<marquee> it is used to add a text in working form.
<!----> it is used to write comment.
<a> it is used to add a hyperlink.
<textarea> it is used to add adjustable input box.
<audio> it is used to add audio player in html.
<video> it is used to add video player in html.
<button> it is used to add a button in html.
<code> it is used to add a code in html.
<strong> it is used to a important notice.
<source> it used to add source in html.
<progress> it is used to show progess of action.
<form> it is used to add or define a form.
<input> it is used to add a input box in html.
<link> it is used to show relationship between related document.
<img> it is used to add image in html.
Use of Form Tag.
<form action="action.php" method="post">
Use of Input Tag.
<input type="text" name="name" placeholder="Enter Your Name">
Use of Link Tag.
<link rel="stylesheet" href="style.css">
Use of Img Tag.
<img src="image.jpg" alt="abc">
SOURCE CODE
<html>
<!------marquee---->
<marquee><h1>THIS IS A EXAMPLE MARQUEE TEXT.</h1></marquee>
<br>
<br>
<br>
<div align="center">
<!------a---->
<a href="https://google.com"><h1>Google</h1></a>
<br>
<br>
<br>
<!------textarea---->
<textarea placeholder="Enter Your Message"></textarea>
<br>
<br>
<br>
<!------audio---->
<audio controls>
<source src="music.mp3" type="audio/mp3">
</audio>
<br>
<br>
<br>
<!------video---->
<video controls>
<source src="video.mp4" type="video/mp4">
</video>
<br>
<br>
<br>
<!------button---->
<button><h1>Click Here</h1></button>
<br>
<br>
<br>
<!------code---->
<code>
document.getElementById("id01")
</code>
<br>
<br>
<br>
<!------strong---->
<strong>Notice: This is A Example File.</strong>
<br>
<br>
<br>
<!------progress---->
<progress value="72" max="100">72%</progress>
<br>
<br>
<br>
<!------form---->
<form>
<h1>Login Form</h1>
<h3>Name</h3>
<input type="text" placeholder="Enter Your Name"><br><br>
<button>Login</button>
</form>
<br>
<br>
<br>
<!------img---->
<img src="image2.png">
<br>
<br>
<br>
<!------link---->
<link rel="stylesheet" href="style.css">
</div>
</html>
Video Related To Content
No comments