Computer Science, asked by ahefaz41, 4 months ago

Write a program in html which will explain the use of <Marquee> tag and <img> tag.​

Answers

Answered by vijayghore
0

Answer:

<html>

   <head>

         <title>Example of Marque and Image tag</title>

   </head>

   <body>

        <marquee><h1>Welcome to HTML</h1></marquee>

        <img href = "parrot.jpg" alt="Parrot"><img>

   </body>

</html>

Answered by anindyaadhikari13
1

Question:-

Write a html code which explains the use of marquee and img tag.

HTML code:-

<!DOCTYPE html>

<html>

<head>

<title>Example</title>

</head>

<body>

<marquee>Hey There, this is a moving text...</marquee>

<img src="image.jpeg">

</body>

</html>

Similar questions