Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="description" content="">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Task2</title>
- <link rel="stylesheet" href="task2.css">
- <link rel="author" href="humans.txt">
- </head>
- <body>
- <section>
- <form name = "employees" method = post value = "empl_data">
- <table>
- <thead>
- <tr>
- <th>Contact name</th>
- <th>City</th>
- <th>Country</th>
- <th>Is Promoted</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Maria Andares</td>
- <td>Berlin</td>
- <td class = "country">Germany</td>
- <td><input type = "checkbox" name = "maria" value = "mariaChecked"/></td>
- </tr>
- <tr>
- <td>Ana Trujillo</td>
- <td>México D.F.</td>
- <td class = "country">Mexico</td>
- <td><input type = "checkbox" name = "ana" value = "anaChecked"/></td>
- </tr>
- <tr>
- <td>Antonio Moreno</td>
- <td>México D.F.</td>
- <td class = "country">Mexico</td>
- <td><!-- According to the picture this checkbox looks disabled --><input type = "checkbox" name = "antonio" value = "andonioChecked" disabled checked/></td>
- </tr>
- <tr>
- <td>Thomas Hardy</td>
- <td>London</td>
- <td class = "country">UK</td>
- <td><input type = "checkbox" name = "thomas" value = "thomasChecked"/></td>
- </tr>
- </tbody>
- </table>
- </form>
- </section>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment