0% found this document useful (0 votes)
10 views4 pages

Index

The document consists of multiple HTML files for a college website, including an index page and separate pages for the Computer Science, Electronics, and Mechanical Engineering departments. Each department page provides an overview of the field, key labs, and a link back to the home page. The index page lists the branches and quick links to specific sections within each department.

Uploaded by

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

Index

The document consists of multiple HTML files for a college website, including an index page and separate pages for the Computer Science, Electronics, and Mechanical Engineering departments. Each department page provides an overview of the field, key labs, and a link back to the home page. The index page lists the branches and quick links to specific sections within each department.

Uploaded by

SAMATA TELANG
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Index.

html

<!DOCTYPE html>

<html>

<head>

<title>My College</title>

</head>

<body>

<h1>Welcome to My College</h1>

<h2>Branches</h2>

<ul>

<li><a href="[Link]">Computer Science Engineering</a></li>

<li><a href="[Link]">Electronics Engineering</a></li>

<li><a href="[Link]">Mechanical Engineering</a></li>

</ul>

<h2>Quick Links</h2>

<ul>

<li><a href="[Link]#labs">CSE Labs</a></li>

<li><a href="[Link]#faculty">ECE Faculty</a></li>

<li><a href="[Link]#about">About Mechanical Dept</a></li>

</ul>

</body>

</html>

[Link]

<!DOCTYPE html>

<html>

<head>
<title>CSE Department</title>

</head>

<body>

<h1>Computer Science Engineering</h1>

<a href="[Link]">Back to Home</a>

<ul>

<li><a href="#about">About CSE</a></li>

<li><a href="#labs">Labs</a></li>

</ul>

<h2 id="about">About CSE</h2>

<p>CSE focuses on programming, AI, ML and software development.</p>

<h2 id="labs">Labs</h2>

<p>Programming Lab, DBMS Lab, Networking Lab.</p>

</body>

</html>

[Link]

<!DOCTYPE html>

<html>

<head>

<title>ECE Department</title>

</head>

<body>

<h1>Electronics Engineering</h1>

<a href="[Link]">Back to Home</a>


<ul>

<li><a href="#about">About ECE</a></li>

<li><a href="#faculty">Faculty</a></li>

</ul>

<h2 id="about">About ECE</h2>

<p>ECE deals with electronics and communication systems.</p>

<h2 id="faculty">Faculty</h2>

<p>Experienced and qualified staff.</p>

</body>

</html>

[Link]

<!DOCTYPE html>

<html>

<head>

<title>Mechanical Department</title>

</head>

<body>

<h1>Mechanical Engineering</h1>

<a href="[Link]">Back to Home</a>

<ul>

<li><a href="#about">About Mechanical</a></li>

<li><a href="#labs">Labs</a></li>

</ul>
<h2 id="about">About Mechanical</h2>

<p>Mechanical focuses on design and manufacturing.</p>

<h2 id="labs">Labs</h2>

<p>Thermal Lab, CAD Lab, Manufacturing Lab.</p>

</body>

</html>

You might also like