NYanev

Untitled

Oct 17th, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>First Homework</title>
  5.  
  6. <form name="Form" method="post" action="">
  7. <table>
  8. <thead>
  9.     <tr>
  10.         <th>Contact name</th>
  11.         <th>City</th>
  12.         <th>Country</th>
  13.         <th id="none" class="noborder">Is Promoted</th>
  14.     </tr>
  15. </thead>
  16. <tbody>
  17.     <tr class="odd">
  18.         <td>Maria Anders</td>
  19.         <td>Berlin</td>
  20.         <td><img src="germany800.jpg" weight="52" alt="Germany" width="30px">Germany</td>
  21.         <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
  22.     </tr>
  23.     <tr class="even">
  24.         <td>Ana Trujillo</td>
  25.         <td>México D.F.</td>
  26.         <td><img src="mexico.gif" weight="52" alt="Mexico" width="30px">Mexico</td>
  27.         <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
  28.     </tr>
  29.     <tr class="odd">
  30.         <td>Antonio Moreno</td>
  31.         <td>México D.F.</td>
  32.         <td><img src="mexico.gif" weight="52" alt="Mexico" width="30px">Mexico</td>
  33.         <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" checked="checked" type="checkbox"></td>
  34.     </tr>
  35.     <tr class="even">
  36.         <td>Thomas Hardy</td>
  37.         <td>London</td>
  38.         <td><img src="uk2.jpg" weight="52" alt="UK" width="30px">UK</td>
  39.         <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
  40.     </tr>
  41. </tbody>
  42. </table>
  43. </form>
Advertisement
Add Comment
Please, Sign In to add comment