Computer Science, asked by dheerajprasadklu, 2 days ago

III. Write down the syntax of the following with reference to HTML:
1. Ordered List
2. Unordered List
3. Marquee Tag in left direction
4. Marquee Tag in downward direction
5. Inserting a picture​

Answers

Answered by MichMich0945
2

Answer:

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <meta http-equiv="X-UA-Compatible" content="IE=edge">

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>dheerajprasadklu's answer</title>

</head>

<body>

   <h1>Ordered List</h1>

   <ol>

       <li>Item 1</li>

       <li>Item 2</li>

       <li>Item 3</li>

       <li>Item 4</li>

   </ol>

   <h1>Unordered list</h1>

   <ul>

       <li>Item 1</li>

       <li>Item 2</li>

       <li>Item 3</li>

       <li>Item 4</li>

   </ul>

   <h1>Marquee - Left</h1>

   <marquee direction="left">Hope this helps you!</marquee>

   <h1>Marquee - Down</h1>

   <marquee direction="down">Have a great day ahead</marquee>

   <img src="https://styleguide.brainly.com/images/logos/brainly-5c4a769505.svg" alt="Brainly logo" height="100px" ,

       width="100px">

</body>

</html>

Output is provided in the attachment :)

Hope this helps you and have a great day ahead!

Attachments:
Similar questions