Day 15: प्रोजेक्ट डे
असाइनमेंट:
html
Copy code
<!DOCTYPE html>
<html>
<head>
<title>फाइनल प्रोजेक्ट</title>
</head>
<body>
<header>
<h1>मेरी वेबसाइट</h1>
<nav>
<a href=”#gallery”>गैलरी</a> |
<a href=”#contact”>संपर्क</a>
</nav>
</header>
<main>
<section id=”gallery”>
<h2>इमेज गैलरी</h2>
<img src=”img1.jpg” alt=”इमेज 1″>
<img src=”img2.jpg” alt=”इमेज 2″>
</section>
<section id=”contact”>
<h2>संपर्क फॉर्म</h2>
<form>
<label>नाम:</label>
<input type=”text”>
<button>सबमिट</button>
</form>
</section>
</main>
<footer>
<p>कॉपीराइट © 2024</p>
</footer>
</body>
</html>