-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeptinterface.html
More file actions
29 lines (28 loc) · 893 Bytes
/
deptinterface.html
File metadata and controls
29 lines (28 loc) · 893 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
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Department Interface</title>
<link rel="stylesheet" href="css1.css">
</head>
<body>
<nav class="menu">
<div class="menu-container">
<h1 class="menu-title">
<a href="#">DEPARTMENT</a>
</h1>
<a href="interface.html" class="back-link">
<button class="back-button">Back</button>
</a>
</div>
</nav>
<div class="departments">
<h2><a href="into.html">Computer Science</a></h2>
<h2><a href="into1.html">Electronics</a></h2>
<h2><a href="into2.html">Civil</a></h2>
<h2><a href="into3.html">Mechanical</a></h2>
<h2><a href="into4.html">Electrical & Electronics</a></h2>
</div>
</body>
</html>