Advertisement
kmer

Untitled

Jan 23rd, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>Example</title>
  7. </head>
  8. <body>
  9. <link rel="stylesheet" type="text/css" href="styles.css">
  10. <div>
  11. <h1>List exercise</h1>
  12. <p>
  13. The lists contain at least two elements.
  14. The most common types are ordered and unordered lists.
  15. </p>
  16. <h2>Example</h2>
  17. <ol>
  18. <li>
  19. Apple
  20. <ul>
  21. <li>Fruit</li>
  22. <li>It's healthy</li>
  23. </ul>
  24. </li>
  25. <li>
  26. Cuumber
  27. <ul>
  28. <li>Vegetable</li>
  29. <li>The perfect saad ingredient</li>
  30. </ul>
  31. </li>
  32. <li>
  33. Bonster
  34. <ul>
  35. <li>Energy drink</li>
  36. <li>Contains coffee</li>
  37. </ul>
  38. </li>
  39. </ol>
  40. <br />
  41. <img src="pic3.png" style="width:80%;" />
  42. <br />
  43. List icon link<a href="https://softuni.bg"> HERE</a>
  44. </div>
  45. <div>
  46. <h1>Table exercise</h1>
  47. <p>Tables is a structured set of data made up of rows and columns.</p>
  48. <h2>Example</h2>
  49. <table>
  50. <thead>
  51. <tr>
  52. <th>Programming language</th>
  53. <th>Developed by</th>
  54. <th>First appeared</th>
  55. </tr>
  56. </thead>
  57. <tbody>
  58. <tr>
  59. <td>C#</td>
  60. <td>Microsoft</td>
  61. <td>2000</td>
  62. </tr>
  63. <tr>
  64. <td>Java</td>
  65. <td>Oracle</td>
  66. <td>1995</td>
  67. </tr>
  68. <tr>
  69. <td>PHP</td>
  70. <td>Zend Technologies</td>
  71. <td>1995</td>
  72. </tr>
  73. </tbody>
  74. </table>
  75. <br />
  76. <img src="pic2.png" style="width:80%;" />
  77. <br />
  78. Table icon link<a href="https://softuni.bg"> HERE</a>
  79. </div>
  80. <div>
  81. <h1>Forms exercise</h1>
  82. <p>
  83. An HTML Form is made of one or more widgets.
  84. Those widgets can be text fields (single line or multiline),
  85. slect boxes, buttons, checkboxes or radio buttons.
  86. </p>
  87. <h2>Example</h2>
  88. <form>
  89. Username <input type="text" name="Username" />
  90. <br />
  91. Password <input type="text" name="Password" />
  92. <br />
  93. Email <input type="email" name="Email" />
  94. <br />
  95. Age <input type="radio" name="uage" value="Under 20"> Under 20
  96. <input type="radio" name="oage" value="20 or more"> 20 or more
  97. <br />
  98. <input type="submit" value="Submit">
  99. </form>
  100. <br />
  101. <img src="pic.png" style="width:80%;"/>
  102. <br />
  103. Form icon link<a href="https://softuni.bg"> HERE</a>
  104. </div>
  105. </body>
  106. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement