Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.17 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/style.css">
  11. </head>
  12. <body>
  13.     <header>
  14.         <h1>Welcome to this webpage!</h1>
  15.         <nav>
  16.             <h2>Main navigation</h2>
  17.             <a href="index.html">Home</a>
  18.             <a href="photos.html">Photo Page</a>
  19.         </nav>
  20.     </header>
  21.  
  22.     <main>
  23.         <section>
  24.             <header>
  25.                 <h2>Section of articles!</h2>
  26.             </header>
  27.             <article>
  28.                 <h3>Article 1</h3>
  29.                 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  30.             </article>
  31.             <article>
  32.                 <h3>Article 2</h3>
  33.                 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
  34.  
  35.                 <table>
  36.                 <tr>
  37.                     <th>Monday</th>
  38.                     <th>Tuesday</th>
  39.                     <th>Wednesday</th>
  40.                     <th>Thursday</th>
  41.                     <th>Friday</th>
  42.                 </tr>
  43.                 <tr>
  44.                     <td>8:35-CSCI4171</td>
  45.                     <td></td>
  46.                     <td>8:35-CSCI4171</td>
  47.                     <td></td>
  48.                     <td>8:35-CSCI4171</td>
  49.                 </tr>
  50.                 <tr>
  51.                     <td>11:35-CSCI4152</td>
  52.                     <td></td>
  53.                     <td>10:05-CSCI4144</td>
  54.                     <td></td>
  55.                     <td>11:35-CSCI4152</td>
  56.                 </tr>
  57.                 <tr>
  58.                     <td>1:05-2670Lab</td>
  59.                     <td></td>
  60.                     <td>11:35-CSCI4152</td>
  61.                     <td></td>
  62.                     <td></td>
  63.                 </tr>
  64.                 <tr>
  65.                     <td>4:05-CSCI4144</td>
  66.                     <td></td>
  67.                     <td>4:05-CSCI4144</td>
  68.                     <td></td>
  69.                     <td>4:05-CSCI4152</td>
  70.                 </tr>
  71.                 <tr>
  72.                     <td>5:35-CSCI3151</td>
  73.                     <td></td>
  74.                     <td>5:35-CSCI3151</td>
  75.                     <td>5:35-CSCI3151</td>
  76.                     <td></td>
  77.                 </tr>
  78.                 </table>
  79.                 <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  80.             </article>
  81.         </section>
  82.     </main>
  83.     <footer>
  84.         <p>&copy; 2020, Dalhousie Computer Science.</p>
  85.     </footer>
  86. </body>
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement