Advertisement
makispaiktis

Codecademy - 2nd Exercise (Wine Festival) - HTML

Aug 14th, 2019 (edited)
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <meta charset="utf-8">
  6.   <title>Aguillar Family Wine Festival</title>
  7.   <link rel="stylesheet" type="text/css" href="reset.css" />
  8.   <link rel="stylesheet" type="text/css" href="style.css" />
  9.   <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
  10. </head>
  11.  
  12. <body>
  13.   <header>
  14.     <h1>Annual Aguillar Family Wine Festival</h1>
  15.   </header>
  16.  
  17.   <div class="container">
  18.         <table>
  19.      
  20.         <thead>
  21.         <tr>
  22.             <th colspan="2"><h1>Wine Festival           Schedule</h1></th>
  23.         </tr>
  24.         <tr>
  25.             <th><h2>Time</h2></th>
  26.             <th><h2>Event</h2></th>
  27.         </tr>
  28.       </thead>
  29.         <tr>
  30.             <td class="left"><h3>12:00 PM</h3></td>
  31.           <td><h3>Welcome Reception</h3></td>
  32.         </tr>
  33.         <tr>
  34.             <td class="left"><h3>01:00 PM</h3></td>
  35.           <td><h3>Storytelling and Tasting</h3></td>
  36.         </tr>
  37.         <tr>
  38.             <td class="left"><h3>02:00 PM</h3></td>
  39.           <td><h3>Wine Luncheon</h3></td>
  40.         </tr>
  41.         <tr>
  42.             <td class="left"><h3>03:00 PM</h3></td>
  43.           <td><h3>Aguillar Family Wines</h3></td>
  44.         </tr>
  45.         <tr>
  46.             <td class="left"><h3>04:00 PM</h3></td>
  47.           <td>Wine and Cheese Tasting</td>
  48.         </tr>
  49.       <tbody>
  50.        
  51.       </tbody>
  52.      
  53.     </table>
  54.   </div>
  55.  
  56.   <footer>
  57.     <h3>Contact</h3>
  58.     <h3>Location</h3>
  59.     <h3>Privacy Policy</h3>
  60.   </footer>
  61. </body>
  62.  
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement