Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <img src="http://images.forwallpaper.com/files/thumbs/preview/8/89934__cool-cat_p.jpg" width="200" height="100"><br/>
  2. <div class ="sampleTable">
  3. <table summary="myTable" border="5">
  4. <thead>List of people</thead>
  5. <tr><th>Firstname</th>
  6. <th>Lastname</th>
  7. <th>Age</th>
  8. <th>Town</th>
  9. <th>Website</th>
  10. </tr>
  11. <tr><td>John</td>
  12. <td>Doe</td>
  13. <td>30</td>
  14. <td>Biot</td>
  15. <td><a href="http://www.google.com">http://www.google.com</a></td>
  16. </tr>
  17. <tr><td>Kevin</td>
  18. <td>McGuiness</td>
  19. <td>41</td>
  20. <td>Cannes</td>
  21. <td><a href="http://www.softeam.fr">http://www.softeam.fr</a></td>
  22. </tr>
  23. <tr><td>Thomas</td>
  24. <td>Rynan</td>
  25. <td>26</td>
  26. <td>Nice</td>
  27. <td><a href="http://www.amadeus.net">http://www.amadeus.net</a></td>
  28. </tr>
  29. </table>
  30. </div>
  31. <div class="sampleForm">
  32. <fieldset><legend>form</legend>
  33. <form action="registration" method="GET">
  34. LastName<input type="text" size="30"/><br/>
  35. FistName<input type="text" size="30"/><br/>
  36. Age<input type="text" size="30"/><br/>
  37. Town<select name="town" size="1">
  38. <option value="Biot">Biot</option>
  39. <option value="Cannes">Cannes</option>
  40. <option value="Nice">Nice</option>
  41. </select><br/>
  42. Website<input type="text" size="30"/><br/>
  43. <input type="reset" value="cancel" size="30"/>
  44. <input type="submit" value="validate" size="30"/><br/>
  45. </form>
  46. </fieldset>
  47. </div>
  48. <div class = "claculons" >
  49. Nombre1<input type="text" id="num1" size="30"/><br/>
  50.  
  51. Operation<select name="operation" id="op" size="1">
  52. <option value="plus">plus</option>
  53. <option value="moins">moins</option>
  54. <option value="fois">fois</option>
  55. <option value="divise">divise</option>
  56. </select><br/>
  57. Nombre2<input type="text" id="num2" size="30"/><br/>
  58. <button onclick="calculator()">calculate</button>
  59. </div>
  60. <div>
  61. <button onclick="">get info</button>
  62. <button onclick="">change color via javascript</button>
  63. <button onclick="">change nodeValue via javascript</button>
  64. <p>Content of my Div</p>
  65. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement