-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCIVIL.html
49 lines (46 loc) · 2.12 KB
/
CIVIL.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEC EBOOKS</title>
<link rel="icon" type="image/x-icon" href="./assets/TEC_logo.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1><img src="./assets/tec_big_logo.png" alt="College Logo"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://www.trichyengg.ac.in/">Our Website</a></li>
<li><a href="https://i-am-lazy-boy.blogspot.com/">Blogs</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="section">
<div class="container">
<h2>Department Years</h2>
<p class="library-intro">welcome you to our Department Years. Our dedicated staff members are always ready to assist you with their expertise and guidance. The academic pursuits of our students and faculty by offering access to a diverse array of resources, both in traditional print and digital formats.</p>
</div>
<div class="department-buttons">
<h3 class="regulation-heading">Year</h3>
<button onclick="navigateToCIVILYear('First_Year')">First Year</button>
<button onclick="navigateToCIVILYear('Second_Year')">Second Year</button>
<button onclick="navigateToCIVILYear('Third_Year')">Third Year</button>
<button onclick="navigateToCIVILYear('Fourth_Year')">Fourth Year</button>
<button onclick="navigateToCIVILYear('PG_First_Year')">PG First Year</button>
<button onclick="navigateToCIVILYear('PG_Second_Year')">PG Second Year</button>
</div>
<script src="script.js"></script>
<footer>
<div class="container">
<p>© 2024 Vignesh G. All rights reserved.</p>
</div>
</footer>
</body>
</html>