Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.63 KB | None | 0 0
  1. <div style="display: inline-block; width: 33%" >
  2.     <h1>Lists exercise</h1>
  3.     <p>The lists contain at least two elements. The most common types are ordered and unordered lists.</p>
  4.     <h2>Example</h2>
  5.     <ol>
  6.         <li>Apple
  7.             <ul>
  8.                 <li>Fruit</li>
  9.                 <li>It's healthy</li>
  10.             </ul>
  11.         </li>
  12.         <li>Cucumber
  13.             <ul>
  14.                 <li>Vegetable</li>
  15.                 <li>The perfect salad ingredient</li>
  16.             </ul>
  17.         </li>
  18.         <li>Bonster
  19.             <ul>
  20.                 <li>Energy drink</li>
  21.                 <li>Contains coffee</li>
  22.             </ul>
  23.         </li>
  24.     </ol>
  25. <img src="list.png" alt= 'a list image'/>
  26. <p>List icon link <a href='https://softuni.bg'>HERE!</a></p>
  27. </div>
  28. <div style="display: inline-block; width: 33%" >
  29.     <h1>Tables exercise</h1>
  30.     <p>Tables is a structured set of data made up of rows and columns.</p>
  31.     <h2>Example</h2>
  32. <table>
  33.     <thead>
  34.     <tr>
  35.         <th>Programming language</th>
  36.         <th>Developed by</th>
  37.         <th>First appeared</th>
  38.     </tr>
  39. </thead>
  40. <tbody>
  41.     <tr>
  42.         <td>C#</td>
  43.         <td>Microsoft</td>
  44.         <td>2000</td>
  45.     </tr>
  46.     <tr>
  47.         <td>Java</td>
  48.         <td>Oracle</td>
  49.         <td>1995</td>
  50.     </tr>
  51.     <tr>
  52.         <td>PHP</td>
  53.         <td>Zend Technologies</td>
  54.         <td>1995</td>
  55.     </tr>
  56. </tbody>
  57. </table>
  58. <img src="Microsoft-Excel-Foo.xlsx_2014-06-26_08-32-462.jpg" alt= 'a table image'/>
  59. <p>Table icon link <a href='https://softuni.bg'>HERE!</a></p>
  60. </div>
  61. <div style="display: inline-block; width: 33%" >
  62.     <h1>Forms exercise</h1>
  63.     <p>An HTML form is made of one or more widgets. Those widgets can be text fields(single line or multiline), select boxes, buttons, checkboxes, or radio buttons.</p>
  64.     <h2>Example</h2>
  65.     <form>
  66.         <label for="Username">Username</label>
  67.         <input id ='Username' type = 'text' name = 'Username' placeholder="Username"></br>
  68.         <label for="Password">Password</label>
  69.         <input id ='Password' type = 'text' name = 'Password' placeholder="Password"></br>
  70.         <label for="Email">Email</label>
  71.         <input id ='Email' type = 'text' name = 'Email' placeholder="Email"></br>
  72.         <span>Age</span><input id ='Age' type = 'radio' name = 'Age' placeholder="Age"> Under 20<input id ='Age' type = 'radio' name = 'Age' placeholder="Age"> 20 or more</br>
  73.         <button type="button">Submit</button>
  74.     </form>
  75.     <img src="club-membership-registration-form.png" width = 30% alt= 'a table image'/>
  76.     <p>Table icon link <a href='https://softuni.bg'>HERE!</a></p>
  77. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement