We adding single line comment in html code.
<!DOCTYPE html>
<html>
<body>
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Comments are not displayed in the browser -->
</body>
</html>
We are creating an audio element with the help of audio tag.
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="E:\HTML\HTMLMusic\Jai-Jai-Narayan.ogg" type="audio/ogg">
<source src="E:\HTML\HTMLMusic\Jai-Jai-Narayan.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
We are using bdo tag to reverse an string.
<!DOCTYPE html>
<html>
<body>
<p>anhsirk ma I</p>
<bdo dir="rtl">anhsirk ma I</bdo><br>
</body>
</html>
We inserting an br tag to break a line.
<!DOCTYPE html>
<html>
<body>
<p>This is<br>a paragraph<br>with line breaks.</p>
</body>
</html>
We using an code tag to make text as beautiful
<!DOCTYPE html>
<html>
<body>
<h2>Computer Code</h2>
<p>Some programming code:</p>
<code>
x = 5;
y = 6;
z = x + y;
</code>
</body>
</html>