-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
28 lines (28 loc) · 899 Bytes
/
contact.html
File metadata and controls
28 lines (28 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Contact College Management</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>College Management</h1>
<nav>
<ul id="menu">
<li><a href="collegemanagement.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="add_student.html">Add Student</a></li>
<li><a href="list_students.html">List Students</a></li>
</ul>
</nav>
</header>
<main>
<div id="content">
<h2>Contact College Management</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consectetur, justo ut consequat luctus, arcu dui aliquet urna, non faucibus ipsum dui in ex.</p>
<p>Contact us at: college@example.com</p>
</div>
</main>
</body>
</html>