-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgallery.html
118 lines (111 loc) · 5.86 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- document meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=2.0, shrink-to-fit=no">
<meta name="theme-color" content="#e24747">
<meta name="apple-mobile-web-app-status-bar-style" content="#212121">
<title>CESS Gallery - Computer Engineering Student Society | GNDU</title>
<!-- favicon -->
<link rel="icon" sizes="192x192" href="images/logo/cessicon.png">
<link rel="apple-touch-icon" href="images/logo/cessicon.png">
<!-- bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="stylesheets/sitefonts.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="stylesheets/animate.css">
<link rel="stylesheet" type="text/css" href="stylesheets/w3.css">
<link rel="stylesheet" type="text/css" href="stylesheets/behaviour.css">
<link rel="stylesheet" type="text/css" href="stylesheets/index_design.css">
<link rel="stylesheet" type="text/css" href="stylesheets/headings_design.css">
<link rel="stylesheet" type="text/css" href="stylesheets/gallery_design.css">
</head>
<body>
<!-- loader and goto top button -->
<div class="loader animated faster">
<div class="box">
<div class="ball"></div>
<div class="bar"></div>
</div>
</div>
<div class="gotoTopButton">
<i class="fas fa-angle-up"></i>
</div>
<!-- navigation bar -->
<div class="topbar animated bounceInDown">
<div class="row">
<div class="logo" onclick="window.location='index.html';"><img src="images/logo/cesslogo.png" style="width: 100%;"></div>
<div class="nav-bar">
<a class="nav-links w3-hide-large" onclick="dropDownMenuControl()"><i class="fas fa-bars"></i></a>
<a class="nav-links w3-hide-small w3-hide-medium" href="index.html">Home</a>
<a class="nav-links w3-hide-small w3-hide-medium" href="cessteams.html">Teams</a>
<a class="nav-links w3-hide-small w3-hide-medium" href="devteam.html">Dev Team</a>
<a class="nav-links w3-hide-small w3-hide-medium" href="gallery.html">Gallery</a>
<a id="special" class="nav-links w3-hide-small" href="campus.html">Be a Campus Ambassador</a>
</div>
</div>
</div>
<div class="dropdown animated fast">
<a class="nav-links" href="index.html"><i class="fas fa-home"></i> Home</a>
<a class="nav-links" href="cessteams.html"><i class="fab fa-teamspeak"></i> Teams</a>
<a class="nav-links" href="devteam.html"><i class="fas fa-wrench"></i> Dev Team</a>
<a class="nav-links" href="gallery.html"><i class="far fa-image"></i> Gallery</a>
<a id="special" class="nav-links w3-hide-large w3-hide-medium" href="campus.html"><i class="fas fa-university"></i> Be a Campus Ambassador</a>
</div>
<div class="title-holder">
<div class="row">
<div class="box">
<div class="content">
<h1>CESS Gallery</h1>
</div>
</div>
<div class="box">
<div class="content" style="flex-direction: column;">
<p>
CESS is one of the most happening place in the entire university. Its students, faculty are young, energetic and possess great thinking and ideas. Various moments that we relish, get caught by paparazzi. After the events are done, we come back to this very page and relive those happy moments.
</p>
<p>
Here are some moments that just stopped the time at CESS. Give your reactions to these.
</p>
</div>
</div>
</div>
</div>
<div class="holder">
<div class="row">
<!-- basic structure --
<div class="box">
<div class="img-holder"></div>
<div class="content">
<p></p>
<br>
<h3></h3>
<p></p>
<div class="social">
<i class="fas fa-heart"></i>
<p></p>
</div>
</div>
</div> -->
</div>
</div>
<div class="footer-area">
<div class="row">
<div class="social">
<a href="https://www.youtube.com/channel/UC4vWMpbj0TEke-LI0XLI2vQ/" target="_blank"><i id="youtube" class="fab fa-youtube social-icon"></i></a>
<a href="https://www.facebook.com/gnducess/" target="_blank"><i id="facebook" class="fab fa-facebook social-icon"></i></a>
<a href="https://www.instagram.com/cess.gndu/" target="_blank"><i id="instagram" class="fab fa-instagram social-icon"></i></a>
<a href="https://cessgndu.slack.com/" target="_blank"><i id="slack" class="fab fa-slack-hash social-icon"></i></a>
</div>
<div>
<p class="copy">© CESS 2019</p>
</div>
<p class="team">Made with <i class="fas fa-heart" style="color:#ff0000;"></i> by <a href="devteam.html">Cess Code Squad</a></p>
</div>
</div>
<script src="javascripts/gallery_js.js"></script>
<script src="javascripts/app.js"></script>
</body>
</html>