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>Program1</title>
- <style>
- body{
- background-color:black ;
- color: white;
- }
- h1{
- font-family: fantasy;
- color: aquamarine;
- }
- h3{
- font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
- color: aqua;
- }
- img{
- width: 400px;
- }
- a{
- color: whitesmoke;
- }
- </style>
- </head>
- <body>
- <h1>1)TABLE</h1>
- <table border="1" width="300px">
- <tr>
- <th>Fruit Names</th>
- <th>Cost</th>
- <th>Calories</th>
- </tr>
- <tr>
- <td>Apple</td>
- <td>250 rup</td>
- <td>205</td>
- </tr>
- <tr>
- <td>Mango</td>
- <td>200 rup</td>
- <td>100</td>
- </tr>
- <tr>
- <td>Orange</td>
- <td>90 rup</td>
- <td>45</td>
- </tr>
- </table>
- <h1>2)IMAGE</h1>
- <img src="fruits.jpg" alt="fruit"/>
- <h1>3)HYPERLINK</h1>
- <a href="https://en.wikipedia.org/wiki/Fruit" target="_blank">More_Info</a>
- <h1>4)LISTS</h1>
- <h3>ORDERED LIST</h3>
- <ol>
- <li>APPLE</li>
- <li>MANGO</li>
- <li>ORANGE</li>
- </ol>
- <h3>UNORDERED LIST</h3>
- <ul>
- <li>BREAKFAST</li>
- <li>LUNCH</li>
- <li>DINNER</li>
- </ul>
- <h3>DISCRIPTIVE LIST</h3>
- <dl>
- <dt>APPLE</dt>
- <dd>Apples are predominantly grown for sale as fresh fruit, though apples are also used commercially for vinegar, juice, jelly, applesauce, and apple butter and are canned as pie stock</dd>
- <dt>MANGO</dt>
- <dd>Mango is native to India and Southeast Asia, and people have cultivated it for over 4,000 years. Hundreds of types of mango exist, each with its own characteristic taste, shape, size, and color</dd>
- <dt>ORANGE</dt>
- <dd>
- Orange trees have dark green shiny leaves and small white flowers with five petals. The flowers smell very sweet which attracts many bees. An orange has a tough shiny orange skin that holds acid in outside layer.
- </dd>
- </dl>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment