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

Web

This document is an HTML template for a college website titled 'My College'. It includes sections for 'About Us', 'Our Courses', and 'Contact Us', featuring a navigation menu and a contact form. The website emphasizes a commitment to education and lists courses such as Computer Science, Electronics, and Mechanical Engineering.

Uploaded by

rexej64211
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)
3 views1 page

Web

This document is an HTML template for a college website titled 'My College'. It includes sections for 'About Us', 'Our Courses', and 'Contact Us', featuring a navigation menu and a contact form. The website emphasizes a commitment to education and lists courses such as Computer Science, Electronics, and Mechanical Engineering.

Uploaded by

rexej64211
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>My College</title>
<link rel="stylesheet" href="COLLEGE.CSS">
</head>
<body>
<header>
<div class="logo">My College</div>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>Welcome to My College, where education meets excellence.</p>
</section>
<section id="courses">
<h2>Our Courses</h2>
<ul>
<li>Computer Science</li>
<li>Electronics</li>
<li>Mechanical Engineering</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2025 My College. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>

You might also like