vonko1988

CSS_overview_homework_task2.html

Jan 26th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.79 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="description" content="">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>Task2</title>
  8.         <link rel="stylesheet" href="task2.css">
  9.         <link rel="author" href="humans.txt">
  10.     </head>
  11.     <body>
  12.         <section>
  13.             <form name = "employees" method = post value = "empl_data">
  14.                 <table>
  15.                     <thead>
  16.                         <tr>
  17.                             <th>Contact name</th>
  18.                             <th>City</th>
  19.                             <th>Country</th>
  20.                             <th>Is Promoted</th>
  21.                         </tr>
  22.                     </thead>
  23.                     <tbody>
  24.                         <tr>
  25.                             <td>Maria Andares</td>
  26.                             <td>Berlin</td>
  27.                             <td class = "country">Germany</td>
  28.                             <td><input type = "checkbox" name = "maria" value = "mariaChecked"/></td>
  29.                         </tr>
  30.                         <tr>
  31.                             <td>Ana Trujillo</td>
  32.                             <td>M&#233;xico D.F.</td>
  33.                             <td class = "country">Mexico</td>
  34.                             <td><input type = "checkbox" name = "ana" value = "anaChecked"/></td>
  35.                         </tr>
  36.                         <tr>
  37.                             <td>Antonio Moreno</td>
  38.                             <td>M&#233;xico D.F.</td>
  39.                             <td class = "country">Mexico</td>
  40.                             <td><!-- According to the picture this checkbox looks disabled --><input type = "checkbox" name = "antonio" value = "andonioChecked" disabled checked/></td>
  41.                         </tr>
  42.                         <tr>
  43.                             <td>Thomas Hardy</td>
  44.                             <td>London</td>
  45.                             <td class = "country">UK</td>
  46.                             <td><input type = "checkbox" name = "thomas" value = "thomasChecked"/></td>
  47.                         </tr>
  48.                     </tbody>
  49.                 </table>
  50.             </form>
  51.         </section>
  52.     </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment