Advertisement
svetlyoek

Untitled

Jan 27th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 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>Document</title>
  8. </head>
  9. <body>
  10. <div>
  11. <h1>Lists excercise</h1>
  12. <p>
  13. The lists contain at least two elements. The most common types are ordered and unordered lists.
  14. </p>
  15. <h2>Examples</h2>
  16. <ol>
  17. 1. Apple
  18. <ul>* Fruit</ul>
  19. <ul>* It's healthy</ul>
  20. </ol>
  21. <ol>
  22. 2. Cucumber
  23. <ul>* Vegetable</ul>
  24. <ul>* The perfect salad ingredient</ul>
  25. </ol>
  26. <ol>
  27. 3. Bonster
  28. <ul>* Energy drink</ul>
  29. <ul>* Contains coffee</ul>
  30. </ol>
  31. <img src="../HTML/HTML-Lab-Files/pic3.png" alt="list pic">
  32. <p>List icon link
  33. <a href="../HTML/HTML-Lab-Files/pic3.png">HERE</a>
  34. </p>
  35.  
  36. </div>
  37. <div>
  38. <h1>Tables excercise</h1>
  39. <p>
  40. Tables is a structured set of data made up of rows and columns.
  41. </p>
  42. <table>
  43. <tr>
  44. <th>Programming language</th>
  45. <th>Developed by</th>
  46. <th>First appeared</th>
  47. </tr>
  48. <tr>
  49. <th>C#</th>
  50. <th>Microsoft</th>
  51. <th>2000</th>
  52. </tr>
  53. <tr>
  54. <th>Java</th>
  55. <th>Oracle</th>
  56. <th>1995</th>
  57. </tr>
  58. <tr>
  59. <th>PHP</th>
  60. <th>Zend Technologies</th>
  61. <th>1995</th>
  62. </tr>
  63.  
  64. </table>
  65. <img src="../HTML/HTML-Lab-Files/pic2.png" alt="table pic">
  66. <p>Table icon
  67. <a href="../HTML/HTML-Lab-Files/pic2.png">HERE</a>
  68. </div>
  69. <div>
  70. <h1>Form excercise</h1>
  71. <p>
  72. An HTML form is made of one or more widgets. Those widgets can be text fields (single line or multiline), select boxes
  73. , buttons, checkboxes, or radio buttons.
  74. </p>
  75.  
  76. <form>
  77. Username
  78. <input type="text" name="username" id="username">
  79. <br>
  80. Password
  81. <input type="text" name="password" id="password">
  82. <br>
  83. Email
  84. <input type="text" name="email" id="email">
  85. <br>
  86. Age
  87. <input type="radio" name="age" value="Under 20">Under 20
  88. <input type="radio" name="age" value="20 or more">20 or more
  89. <br>
  90. <input type="submit" value="Submit">
  91. </form>
  92. <img src="../HTML/HTML-Lab-Files/pic.png" alt="form pic">
  93. <p>Form icon link
  94. <a href="../HTML/HTML-Lab-Files/pic.png">HERE</a>
  95. </p>
  96.  
  97. </div>
  98.  
  99.  
  100.  
  101.  
  102. </body>
  103. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement