-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (139 loc) · 4.62 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GEC</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="#"><img src="assets/logo.png" alt="Logo"></a>
</div>
<ul class="nav-links">
<li><a href="#banner">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#admissions">Admissions</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="banner" id="banner">
<h1>Welcome to </h1>
<h1>Goa Engineering College </h1>
<p>Transforming students into technology leaders</p>
</section>
<section class="about" id="about">
<h2>About GEC</h2>
<p>Goa Engineering College (GEC) is a premier institute of engineering and technology located in Goa, India. It was established in the year 1997 and is affiliated to Goa University. GEC offers undergraduate and postgraduate courses in various disciplines of engineering and technology.</p>
</section>
<section class="courses" id="courses">
<h2>Courses Offered</h2>
<table>
<tr>
<th>Department</th>
<th>Course</th>
<th>Duration</th>
</tr>
<tr>
<td>Computer Engineering</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Computer Engineering</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
<tr>
<td>Electrical Engineering</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Electrical Engineering</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
<tr>
<td>Civil Engineering</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Civil Engineering</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
<tr>
<td>Mechanical Engineering</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Mechanical Engineering</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
<tr>
<td>Information Technology</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Information Technology</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
<tr>
<td>Mining Engineering</td>
<td>Bachelor of Engineering (BE)</td>
<td>4 years</td>
</tr>
<tr>
<td>Mining Engineering</td>
<td>Master of Engineering (ME)</td>
<td>2 years</td>
</tr>
</table>
</section>
<section class="admissions" id="admissions">
<h2>Admissions</h2>
<p>Admissions to Goa Engineering College are conducted through the Common Entrance Test (CET) conducted by the Goa Common Entrance Test Cell. Eligible candidates can apply online on the official website of the CET cell.</p>
</section>
<section class="contact" id="contact">
<h2>Contact Us</h2>
<p>Address: Farmagudi, Ponda, Goa - 403401, India</p>
<p>Phone: +91-832-2336301</p>
<p>Email: [email protected]</p>
</section>
</main>
<footer>
<div class="container">
<div class="row">
<div class="col-md-6">
<p>© 2023 GEC. All Rights Reserved.</p>
</div>
<div class="col-md-6">
<ul class="social-icons">
<li><a href="#" target="_blank">
<img src="assets/facebook.png" alt="Twitter Logo" class="facebook-icon"></a>
</li>
<li><a href="#" target="_blank">
<img src="assets/linkdin.png" alt="Twitter Logo" class="linkedin-icon"></a>
</li>
<li><a href="#" target="_blank">
<img src="assets/instagram.png" alt="Twitter Logo" class="instagram-icon"></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="assets/script.js"></script>
</body>
</html>