<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cool HTML Page</title>
</head>
<body>
<h1>🌟 Welcome to My Cool Page 🌟</h1>
<hr>
<h2>About Me</h2>
<p>Hello! My name is <strong>Rishabh</strong>. I love <em>coding</em>,
<em>music</em>, and creating awesome things on the web.</p>
<h2>📸 My Picture</h2>
<img src="https://picsum.photos/300" alt="Random Cool Image">
<h2>🔗 Useful Links</h2>
<ul>
<li><a href="https://google.com" target="_blank">Google</a></li>
<li><a href="https://youtube.com" target="_blank">YouTube</a></li>
<li><a href="https://openai.com" target="_blank">OpenAI</a></li>
</ul>
<h2>🎵 My Favorite Song</h2>
<audio controls>
<source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3"
type="audio/mpeg">
</audio>
<h2>🎬 My Favorite Video</h2>
<video controls width="400">
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>
<h2>💌 Contact Me</h2>
<form>
<label for="name">Your Name:</label><br>
<input type="text" id="name"><br><br>
<label for="message">Your Message:</label><br>
<textarea id="message" rows="4" cols="30"></textarea><br><br>
<input type="submit" value="Send Message">
</form>
<hr>
<p>© 2025 My Cool Page</p>
</body>
</html>