Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>First Homework</title>
- <form name="Form" method="post" action="">
- <table>
- <thead>
- <tr>
- <th>Contact name</th>
- <th>City</th>
- <th>Country</th>
- <th id="none" class="noborder">Is Promoted</th>
- </tr>
- </thead>
- <tbody>
- <tr class="odd">
- <td>Maria Anders</td>
- <td>Berlin</td>
- <td><img src="germany800.jpg" weight="52" alt="Germany" width="30px">Germany</td>
- <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
- </tr>
- <tr class="even">
- <td>Ana Trujillo</td>
- <td>México D.F.</td>
- <td><img src="mexico.gif" weight="52" alt="Mexico" width="30px">Mexico</td>
- <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
- </tr>
- <tr class="odd">
- <td>Antonio Moreno</td>
- <td>México D.F.</td>
- <td><img src="mexico.gif" weight="52" alt="Mexico" width="30px">Mexico</td>
- <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" checked="checked" type="checkbox"></td>
- </tr>
- <tr class="even">
- <td>Thomas Hardy</td>
- <td>London</td>
- <td><img src="uk2.jpg" weight="52" alt="UK" width="30px">UK</td>
- <td class="noborder"><input disabled="disabled" name="IsPromoted" value="" type="checkbox"></td>
- </tr>
- </tbody>
- </table>
- </form>
Advertisement
Add Comment
Please, Sign In to add comment