0% found this document useful (0 votes)
4 views1 page

!1doctype HTML

This document is an HTML page titled 'Cool HTML Page' created by Rishabh, who enjoys coding, music, and web creation. It includes sections about Rishabh, a random image, useful links, a favorite song, a favorite video, and a contact form. The page is designed to be visually appealing and interactive.

Uploaded by

rishabhsgrl1408
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

!1doctype HTML

This document is an HTML page titled 'Cool HTML Page' created by Rishabh, who enjoys coding, music, and web creation. It includes sections about Rishabh, a random image, useful links, a favorite song, a favorite video, and a contact form. The page is designed to be visually appealing and interactive.

Uploaded by

rishabhsgrl1408
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

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>&copy; 2025 My Cool Page</p>

</body>
</html>

You might also like