Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>HTML Lab Demo Version</title>
- <link rel="stylesheet" href="cssLabDemo.css">
- </head>
- <body>
- <div>
- <h1>List exercise</h1>
- <p>This lists contain at least two elements. The most common types are ordered and unordered lists.</p>
- <h2>Example</h2>
- <ol>
- <li>Apple</li>
- <ul>
- <li>Fruit</li>
- <li>It`s Healthy</li>
- </ul>
- <li>Cucumber</li>
- <ul>
- <li>Vegetable</li>
- <li>The perfect salad ingredient</li>
- </ul>
- <li>Bonster</li>
- <ul>
- <li>Energy drink</li>
- <li>Contains coffee</li>
- </ul>
- </ol>
- <section class="picture">
- <img width="300" height="300" src="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic3.png" alt="Picture" />
- </section>
- <p>
- List icon link <a href="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic3.png">HERE</a>
- </p>
- </div>
- <div>
- <h1>Table exercise</h1>
- <p>Tables is a structured set of data made up of rows and columns.</p>
- <h2>Example</h2>
- <table>
- <thead>
- <tr>
- <th>Programming Language</th>
- <th>Developed by</th>
- <th>First appeared</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>C#</td>
- <td>Microsoft</td>
- <td>2000</td>
- </tr>
- <tr>
- <td>Java</td>
- <td>Oracle</td>
- <td>1995</td>
- </tr>
- <tr>
- <td>PHP</td>
- <td>Zend Techologies</td>
- <td>1995</td>
- </tr>
- </tbody>
- </table>
- <section class="picture">
- <img width="300" height="300" src="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic2.png" alt="Picture" />
- </section>
- <p>
- Table icon link <a href="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic2.png">HERE</a>
- </p>
- </div>
- <div>
- <h1>Form exercise</h1>
- <p>An HTML form is made if one or more widgets. Those widgets can be text fields (single line or multiline), select boxes, buttons, checkboxes, or radio buttons.</p>
- <h2>Example</h2>
- <form>
- <label for="username">Username</label><input id="username" type="text" placeholder="Username" />
- <br>
- <label for="password">Password</label><input id="password" type="password" placeholder="Password" />
- </br>
- <label for="email">Email</label><input id="email" type="Email" placeholder="Email" />
- </form>
- <form>
- <label for="age">Age</label><input id="age" type="radio" name="Age" />
- <label for="age">Under 20</label><input id="age" type="radio" name="Age" />
- <label for="age">20 or more</label>
- <br>
- <input type="submit" value="Submit" />
- </br>
- </form>
- <section class="picture">
- <img width="300" height="300" src="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic.png" alt="Picture" />
- </section>
- <p>
- Form icon link <a href="C:\Users\DESI\Documents\JavaScript\Fundamentals\HTML-Lab-Files/pic.png">HERE</a>
- </p>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment