forked from Programmers-Paradise/UTD--Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
research.html
183 lines (166 loc) · 4.66 KB
/
research.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research - CSVTU</title>
<link rel="stylesheet" href="styles2.css">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 5px;
background-color: #fff;
border-bottom: 1px solid #ccc;
}
.logo {
display: flex;
align-items: center;
margin-left:10px;
}
.logo h3 {
font-size: medium;
}
.logo img {
width: 80px;
height: 70px;
margin-right: 10px;
}
/* Reset some default browser styles */
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
/* Flexbox container for horizontal alignment */
nav ul {
display: flex;
justify-content: space-around;
align-items: center;
margin: 0;
padding: 0;
background-color: #fff;
/* border-bottom: 1px solid #ccc; */
}
/* Style each list item */
nav ul li {
position: relative;
}
/* Style for navigation links */
nav ul li a {
display: block;
padding: 15px 40px;
text-decoration: none;
color: #000;
font-weight: bold;
transition: background-color 0.5s;
}
nav ul li a:hover {
background-color: #f9f9f9;
}
/* Dropdown container */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
transition: background-color 0.3s;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Add some hover effects for main navigation links */
nav ul li a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: #000;
bottom: -5px;
left: 0;
transform: scaleX(0);
transition: transform 0.5s ease;
}
nav ul li a:hover::after {
transform: scaleX(1);
}
main {
flex: 1;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="images/csvtu logo.png" alt="Chhattisgarh Swami Vivekanand Technical University">
<h3>Chhattisgarh Swami Vivekanand<br/>Technical University</h3>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="add_ug.html">Admissions</a></li>
<li class="dropdown">
<a href="#" class="dropbtn">Faculty</a>
<div class="dropdown-content">
<a href="Btech_faculty.html">Btech's Faculties</a>
<a href="Diploma_faculty.html">Diploma's Faculties</a>
<a href="PG_faculty.html">PG's Faculties</a>
</div>
</li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="menu.html" id="menu-link">Menu</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Research</h2>
<p>Details about research activities and projects can be listed here.</p>
<table>
<tr>
<th>Image</th>
<th>Description</th>
<th>Link</th>
</tr>
<tr>
<td><img src="vision1.jpg" alt="Vision Image 1" width="100"></td>
<td>Our vision is to lead the future of Computer Science and AI research.</td>
<td><a href="details/vision1.html">View Details</a></td>
</tr>
<tr>
<td><img src="vision2.jpg" alt="Vision Image 2" width="100"></td>
<td>Innovation and research in Data Science.</td>
<td><a href="details/vision2.html">View Details</a></td>
</tr>
</table>
</section>
</main>
<footer>
<p>© 2024 University Teaching Department (CSVTU). All Rights Reserved.</p>
<p>Contact us at enquiry@csvtu.ac.in</p>
</footer>
<script src="script.js"></script>
</body>
</html>