Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>1170 Dal CS Website</title>
  5.     <meta charset="utf-8">
  6.     <meta name="description" content="An example for CSCI 1206">
  7.     <meta name="author" content="Gabriella Mosquera">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.  
  10.     <link rel="stylesheet" href="css/normalize.css">
  11.     <link rel="stylesheet" href="css/style.css">
  12. </head>
  13. <body>
  14.  
  15.     <header>
  16.         <h1>Welcome to the photo page!</h1>
  17.         <nav>
  18.             <h2>Main navigation</h2>
  19.             <a href="index.html">Home</a>
  20.             <a href="photos.html">Photo Page</a>
  21.         </nav>
  22.     </header>
  23.  
  24.     <main>
  25.         <header>
  26.             <h2>Section with images!</h2>
  27.             <!-- Image citation:
  28.                 "Dalhousie Visit 2018" by SQR Lab is licensed under CC BY-NC-SA 2.0
  29.                 Available online: https://live.staticflickr.com/788/40822050482_613215f00c_b.jpg
  30.                 Accessed: 12 Feb 2020
  31.             -->
  32.             <img id="img1" src="https://live.staticflickr.com/788/40822050482_613215f00c_b.jpg" alt="Dalhousie University, Canada">
  33.         </header>
  34.         <section>
  35.             Dalhousie University
  36.             Halifax, Nova Scotia, Canada  B3H 4R2
  37.             1-902-494-2211
  38.             info@dal.ca
  39.         </section>
  40.     </main>
  41.  
  42.     <footer>
  43.         <p>&copy; 2020, Dalhousie Computer Science.</p>
  44.     </footer>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement