Advertisement
makispaiktis

Μάθημα 7 - Εργασία 2

Sep 19th, 2018 (edited)
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.36 KB | None | 0 0
  1. **** Ο συνολικός κώδικας: ****
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5.  
  6. <head>
  7.   <meta charset="utf-8">
  8.   <title>Aguillar Family Wine Festival</title>
  9.   <link rel="stylesheet" type="text/css" href="reset.css" />
  10.   <link rel="stylesheet" type="text/css" href="style.css" />
  11.   <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
  12. </head>
  13.  
  14. <body>
  15.   <header>
  16.     <h1>Annual Aguillar Family Wine Festival</h1>
  17.   </header>
  18.  
  19.   <div class="container">
  20.    
  21.     <!--Beginning-->
  22.     <table>
  23.       <thead>
  24.         <tr>
  25.           <th colspan="2"><h1>Wine Festival Schedule</h1></th>
  26.         </tr>
  27.         <tr>
  28.          <th><h2>Time</h2></th>
  29.           <th><h2>Event</h2></th>
  30.         </tr>
  31.       </thead>
  32.      
  33.       <tbody>
  34.         <tr>
  35.           <td class="left"><h3>12:00 PM</h3></td>
  36.           <td><h3>Welcome Reception</h3></td>
  37.         </tr>
  38.        <tr>
  39.           <td class="left"><h3>01:00 PM</h3></td>
  40.          <td><h3>Storytelling and Tasting</h3></td>
  41.         </tr>
  42.         <tr>
  43.           <td class="left"><h3>02:00 PM</h3></td>
  44.           <td><h3>Wine Luncheon</h3></td>
  45.         </tr>
  46.         <tr>
  47.           <td class="left"><h3>03:00 PM</h3></td>
  48.           <td><h3>Aguillar Family Wines</h3></td>
  49.         </tr>
  50.         <tr>
  51.           <td class="left"><h3>04:00 PM</h3></td>
  52.           <td><h3>Wine and Cheese Tasting</h3></td>
  53.         </tr>
  54.       </tbody>  
  55.      
  56.     </table>
  57.         <!--End-->
  58.   </div>
  59.  
  60.   <footer>
  61.     <h3>Contact</h3>
  62.     <h3>Location</h3>
  63.     <h3>Privacy Policy</h3>
  64.   </footer>
  65. </body>
  66.  
  67. </html>
  68.  
  69.  
  70. **** Ο κώδικας που έγραψα εγώ, για να δημιουργήσω τον πίνακα/table ****
  71.  
  72. <!--Beginning-->
  73.     <table>
  74.       <thead>
  75.         <tr>
  76.           <th colspan="2"><h1>Wine Festival Schedule</h1></th>
  77.         </tr>
  78.         <tr>
  79.          <th><h2>Time</h2></th>
  80.           <th><h2>Event</h2></th>
  81.         </tr>
  82.       </thead>
  83.      
  84.       <tbody>
  85.         <tr>
  86.           <td class="left"><h3>12:00 PM</h3></td>
  87.           <td><h3>Welcome Reception</h3></td>
  88.         </tr>
  89.        <tr>
  90.           <td class="left"><h3>01:00 PM</h3></td>
  91.          <td><h3>Storytelling and Tasting</h3></td>
  92.         </tr>
  93.         <tr>
  94.           <td class="left"><h3>02:00 PM</h3></td>
  95.           <td><h3>Wine Luncheon</h3></td>
  96.         </tr>
  97.         <tr>
  98.           <td class="left"><h3>03:00 PM</h3></td>
  99.           <td><h3>Aguillar Family Wines</h3></td>
  100.         </tr>
  101.         <tr>
  102.           <td class="left"><h3>04:00 PM</h3></td>
  103.           <td><h3>Wine and Cheese Tasting</h3></td>
  104.         </tr>
  105.       </tbody>  
  106.      
  107.     </table>
  108.         <!--End-->
  109.  
  110.  
  111.  
  112. **** Το υποσέλιδο/footer ΟΛΗΣ της σελίδας μου και όχι του πίνακα (σε αυτή την εργασία έχουμε το στοιχείο <footer> για όλη την σελίδα μας, ενώ δεν υπάρχει το <tfoot> για τον πίνακα). Οι 3 αυτές επικεφαλίδες <h3> που περιέχει το υποσέλιδο <footer> της σελίδας μας μένουν αμετακίνητες στο κάτω μέρος της οθόνης, καθώς σκρολάρουμε με το ποντίκι πάνω-κάτω στην ιστοσελίδα. ****
  113.  
  114. <footer>
  115.    <h3>Contact</h3>
  116.    <h3>Location</h3>
  117.    <h3>Privacy Policy</h3>
  118. </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement