Advertisement
chefache

Untitled

May 23rd, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>HTML-Basics-Lab</title>
  8. </head>
  9. <body>
  10.  
  11.  
  12. <table>
  13. <thead>
  14. <tr>
  15. <th><h1>List exercise</h1></th>
  16. <th><h1>Table exercise</h1></th>
  17. <th><h1>Forms exercis</h1></th>
  18. </tr>
  19.  
  20. <tbody>
  21. <tr>
  22. <td>
  23. <p>
  24. The list</span> contain at least two elements.The most common types are ordered and unordered lists.
  25. </p>
  26. </td>
  27. <td>
  28. <p>
  29. <span>Tables</span> is a structured set of data made up of rows and columns
  30. </p>
  31. </td>
  32. <td>
  33. <p>
  34. An HTMLF<span>Torms</span> is made of one or more widgets. Those widgets can be fields(single line or multiline), select boxes,buttons,checkboxes,or radio buttons.
  35. </p>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>
  40. <h2>Example</h2>
  41. </td>
  42. <td>
  43. <h2>Example</h2>
  44. </td>
  45. <td>
  46. <h2>Example</h2>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td>
  51. <ol>
  52. <li>Apple</li>
  53. <ul>
  54. <li>Fruit</li>
  55. <li>It's healthy</li>
  56. </ul>
  57.  
  58. <li>Cucumber</li>
  59. <ul>
  60. <li>Vegetable</li>
  61. <li>The perfect salad ingredient</li>
  62. </ul>
  63.  
  64. <li>Bonster</li>
  65. <ul>
  66. <li>Energy drink</li>
  67. <li>Contains coffe</li>
  68. </ul>
  69. </ol>
  70.  
  71. </td>
  72. <td>
  73. <table>
  74. <thead>
  75. <tr>
  76. <th>Programing Language</th>
  77. <th>Developed by</th>
  78. <th>First appeared</th>
  79. </tr>
  80. </thead>
  81. <tbody>
  82. <tr>
  83. <td>C#</td>
  84. <td>Microsoft</td>
  85. <td>2000</td>
  86. </tr>
  87. <tr>
  88. <td>Java</td>
  89. <td>Oracle</td>
  90. <td>1995</td>
  91. </tr>
  92. <tr>
  93. <td>PHP</td>
  94. <td>Zend Technologies</td>
  95. <td>1995</td>
  96. </tr>
  97. </tbody>
  98. </table>
  99.  
  100. </td>
  101. <td>
  102. <form>
  103. <label>Username:
  104. <input type="text">
  105. </label> <br>
  106. <label >Password:
  107. <input type="password">
  108. </label><br>
  109. <label >Email:
  110. <input type="email">
  111. </label><br>
  112. <label>Age:
  113. <input type="radio">Under 20
  114. <input type="radio">20 or mor
  115. </label> <br>
  116. <label>
  117. <input type="submit">
  118. </label>
  119. </form>
  120.  
  121. </td>
  122. </tr>
  123. <tr>
  124. <td>
  125. <img src="../HTML DEMO/pic3.png" alt="pic list">
  126. </td>
  127. <td>
  128. <img src="../HTML DEMO/pic2.png" alt="pic table">
  129. </td>
  130. <td>
  131. <img src="../HTML DEMO/pic.png" alt="pic form">
  132. </td>
  133. </tr>
  134. <tr>
  135. <td> List icon link:
  136. <a href="">HERE</a>
  137. </td>
  138. <td>Table icon link:
  139. <a href="">HERE</a>
  140. </td>
  141. <td>Form icon link:
  142. <a href="">HERE</a>
  143. </td>
  144. </tr>
  145.  
  146. </tbody>
  147. </thead>
  148. </table>
  149.  
  150.  
  151.  
  152.  
  153. </body>
  154. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement