forked from TheZoom110/Esperanza-2023-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
83 lines (83 loc) · 3.89 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CGEC - Courses</title>
<link rel="stylesheet" href="courses-body.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<header class="header">
<nav class="nav">
<ul>
<div class="items" id="logo-div">
<a href="home.html"><img src="assets/CGEC-Logo.png" alt="CGEC-Logo"></a>
</div>
<div class="helpline">
<span>Contact info:</span>
<span>Email: abc@gmail.com</span>
<span>Contact: 9876543210</span>
</div>
<ul>
<li class="cgec">Coochbehar Government Engineering College</li>
</ul>
<li class="items"><a href="about.html">About</a></li>
<li class="items"><a href="#">Academics</a></li>
<li class="items"><a href="courses.html">Departments</a></li>
<li class="items"><a href="clubs.html">Club Corner</a></li>
</ul>
</nav>
</header>
<div class="body">
<h1>Courses Offered</h1>
<hr>
<p>Cooch Behar Government Engineering College offers Undergraduate courses (Bachelor of Technology) in the following courses:</p>
<ul>
<li>B.Tech in Computer Science and Engineering</li>
<li>B.Tech in Electronics and Telecommunication Engineering</li>
<li>B.Tech in Mechanical Engineering</li>
<li>B.Tech in Civil Engineering</li>
<li>B.Tech in Electrical Engineering</li>
</ul>
<p>It is affiliated to Maulana Abul Kalam Azad University of Technology.</p>
<div class="video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/pv1wjsXwZp4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="footer">
<div class="footer-box1">
<div class="box-1">
<h2>Social Handles</h2>
<ul>
<li class="social"><a href="https://www.youtube.com/@esperanzacgec" target="_blank"><img src="assets/social-youtube.svg" alt="youtube"></a></li>
<li class="social"><a href="https://www.facebook.com/official.cgec/" target="_blank"><img src="assets/social-facebook.svg" alt="facebook"></a></li>
<li class="social"><a href="https://www.linkedin.com/school/official-cgec/" target="_blank"><img src="assets/social-linkedin.svg" alt="linkedin"></a></li>
</ul>
</div>
<div class="box-2">
<h2>Clubs Corner</h2>
<ul>
<li class="clubs">Tech-O-Nicks</li>
<li class="clubs">GDSC CGEC</li>
<li class="clubs">CGEC Sports Club</li>
<li class="clubs">Debate Club</li>
<li class="clubs">Pep Talks Club</li>
<li class="clubs">Melodies of CGEC</li>
<li class="clubs">The CGEC Times</li>
<li class="clubs">Dance Club</li>
<li class="clubs">Creative Pens</li>
<li class="clubs">Cine-Photography</li>
<li class="clubs">Theater Club</li>
</ul>
</div>
</div>
<div class="footer-box2">
<h4>Copyright © all Right Reserved</h4>
<h4>Designed by Teq Titans</h4>
</div>
</div>
</body>
</html>