-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (146 loc) · 5.58 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
144
145
146
147
148
149
150
<!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" />
<link rel="icon" type="image/x-icon" href="/images/logo.png" />
<link rel="stylesheet" href="index.css" class="css" />
<title>Welcome to CES</title>
</head>
<body>
<div class="main">
<div class="nav">
<div class="ceslogo">
<a href="index.html">
<img src="images/logo.png" alt="CES HomePage" />
</a>
</div>
<!-- Menu -->
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<div class="overlay-content">
<a href="#" target="_blank"
><img id="ceslogo1" src="images/logo.png" alt="CES HomePage"
/></a>
<a href="teams.html" target="_self">TEAMS</a>
<a href="about.html" target="_self">ABOUT</a>
<a href="events.html" target="_self">EVENTS</a>
<a href="articles.html" target="_self">ARTICLES/BLOGS</a>
<a href="articles.html" target="_self">WORKSHOP</a>
<a href="alumni.html" target="_self">ALUMNI SECTION</a>
<a href="kaizen.html" target="_self">KAIZEN</a>
<a href="contactus.html" target="_self">CONTACT US</a>
</div>
</div>
<div class="menu" onclick="openNav()">
<img
id="menupic"
style="height: 40px; width: 40px; margin: 15px"
src="images/menu black.png"
alt=""
/>
</div>
</div>
<div class="content">CIVIL ENGINEERING SOCIETY</div>
<div class="updates">
<button id="updt">LATEST UPDATES</button>
</div>
</div>
<div class="vision">
<div class="pic">
<img
class="enggpic"
src="images/Black Aesthetic Quotes T-Shirt 2.png"
alt=""
/>
</div>
<div class="heading">OUR VISION</div>
<div class="content1">
We encourage young minds to pursue their thirst for knowledge and
curiosity in civil engineering by promoting holistic growth. We seek to
stimulate collective growth among students through collaboration, ensure
their holistic development, and provide experiential learning platforms
in the form of competitions, activities, and meetings as part of our
goal
</div>
</div>
<div class="mission">
<div class="pic1">
<img
class="enggpic1"
src="images/Black Aesthetic Quotes T-Shirt 1.png"
alt=""
/>
</div>
<div class="heading1">OUR MISSION</div>
<div class="content2">
Our aim is to promote teamwork, companionship and guidelines for
professional and ethical behavior. It aims to raise knowledge among the
students of the most recent trends and technology, making it easier for
them to choose their career paths.
</div>
</div>
<div class="svnit">
<div class="pic2">
<img class="enggpic2" src="images/SVNIT-Surat 3.png" alt="" />
</div>
<div class="heading2">SVNIT</div>
<div class="content3">
Sardar Vallabhbhai National Institute of Technology, Surat popularly
known as National Institute of Technology, Surat, NIT Surat or SVNIT, is
an engineering institute of higher education established by the
Parliament of India in 1961.It's mission is- "To be a globally accepted
centre of excellence in technical education catalysing absorption,
innovation, diffusion and transfer of high technologies resulting in
enhanced quality for all the stake holders"
</div>
</div>
<div class="footer">
<div class="copy">
<img class="copyright" src="images/copyright.png" alt="" />
</div>
<div class="line1">
<img class="line1img" src="images/Line 1.png" alt="" />
</div>
<div class="ces"><p class="cesimg">CES</p></div>
<div class="line2">
<img class="line2img" src="images/Line 5.png" alt="" />
</div>
<div class="svnit1">
<img class="locimg" src="images/Vector.png" alt="" />
<p class="nits">Sardar Vallabhai National Institute Of Technology</p>
</div>
<div class="links">
<a href="https://www.facebook.com/ces.nitsurat/" target="_blank"
><img class="logo" src="images/facebook.png" alt="Facebook"
/></a>
<a href="" target="_blank"
><img class="logo" src="images/twitter.png" alt="Twitter"
/></a>
<a
href="https://www.linkedin.com/company/civil-engineering-society-svnit/mycompany/"
target="_blank"
><img class="logo" src="images/linkedin round.png" alt="LinkedIn"
/></a>
<a href="https://www.instagram.com/ces.svnit/?hl=en" target="_blank"
><img class="logo" src="images/instagram.png " alt="Instagram"
/></a>
<a href="mailto:[email protected]" target="_blank"
><img class="logo" src="images/gmail.png" alt="Gmail"
/></a>
</div>
</div>
<!-- Script -->
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
</script>
</body>
</html>