-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
132 lines (121 loc) · 4.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>Engi 17 dummy</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Exo+2" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar">
<a href="#home">Home</a>
<a href="#events">Events</a>
<a href="#contact">Contact</a>
</div>
<br><br>
<div class="title_box">
<p class ="headings" align="center">Events : Engi'17</p>
<p align="center">Feel free to be innovative with colors, sizes, alignment: you name it. <br>
you can change some html if you want.
</p>
</div>
<br>
<div class="event">
<h2 class ="headings" align="center">Some event</h2>
<h3 class ="headings" align="center">by Some committee</h3>
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="https://upload.wikimedia.org/wikipedia/en/c/cf/Techfest.jpg" alt="Event1" style="width:100%;">hi
</div>
<div class="item">
<img src="http://onlygizmos.com/content/2013/01/IMG_0685.jpg" alt="Event2" style="width:100%;">
</div>
<div class="item">
<img src="http://invictamag.com/wp-content/uploads/2016/07/ffa.crowdshot_2n.jpg" alt="New york" style="width:100%;">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<br>
<button class="accordion">About this event</button>
<div class="panel">
<p>This event was supposed to be really cool, no one gave a fuck bout it though. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
</p>
</div>
<p><a href="" title="">Wow this is cool!</a>
<button class="button button1"style="vertical-align:middle"><span>What harm a button could do?</span></button>
</div>
<br>
<h2 class ="headings" align="center">Things to do during Engi</h2>
<br>
<div class="row container">
<div class="col-sm-3">
<div class="card">
<img src="https://az616578.vo.msecnd.net/files/2016/03/08/635929993412409527-1353917869_Image-1-1.jpg" alt="trip" style="width:100%">
<h4 class="container"><b>Trips</b></h4>
</div>
</div>
<div class="col-sm-3">
<div class="card">
<img src="https://www.openreality.co.uk/wp-content/uploads/2015/11/citrix-mobility-open-reailty.jpg" alt="trip" style="width:100%">
<h4 class="container"><b>Beach+Beer</b></h4>
</div>
</div>
<div class="col-sm-3">
<div class="card">
<img src="http://www.ontherisemusic.com/sites/default/files/DJ-Crowd.jpg" alt="trip" style="width:100%">
<h4 class="container"><b>DJ</b></h4>
</div>
</div>
<div class="col-sm-3">
<div class="card">
<img src="https://i.pinimg.com/originals/50/91/a7/5091a7b88d2c5237afeae03bdf55e683.jpg" alt="trip" style="width:100%">
<h4 class="container"><b>Passout ;)</b></h4>
</div>
</div>
</div>
<br><br><br>
<footer>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-instagram"></a>
</footer>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].onclick = function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
}
}
</script>
</body>
</html>