forked from GeekyShacklebolt/Moz-Niec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (125 loc) · 5.12 KB
/
index.html
File metadata and controls
128 lines (125 loc) · 5.12 KB
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
<!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">
<title>Moz-NIEC</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
#hover:hover{
color: orange;
}
#hover_stuff{
display: none;
}
#hover_on:hover + #hover_stuff{
display: block;
}
</style>
</head>
<body style="background-color:orange">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><font color="white"><b>Moz-NIEC</b> Ignited Minds</font></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="blog.html"><b>BLOG</b></a></li>
<li><a href="#events"><b>EVENTS</b></a></li>
<li><a href="#about_us"><b>ABOUT US</b></a></li>
<li><a href="#contact_us"><b>CONTACT US</b></a></li>
</ul>
<img style="float: right" src="new_logo.png" class="img-responsive w3-animate-right" height="128" width="170">
</div>
</div>
</nav>
<!-- carousel-->
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="margin: 15px";>
<!-- Indicators -->
<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" role="listbox">
<div class="item active">
<img class="first-slide" src="1.jpg" alt="First slide">
</div>
<div class="item">
<img class="second-slide" src="1.jpg" alt="Second slide">
</div>
<div class="item">
<img class="third-slide" src="1.jpg" alt="Third slide">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- /.carousel -->
<div class="col-sm-12" style="background-color:#455a64;">
</br>
<div id="container">
<img style="display:inline;" src="2.jpg" class="img-responsive img-circle w3-animate-left" height="128" width="128">
<h1 style="display:inline;"><b><font color="white">Firefox</font></b></h1>
<h2 style="display:inline;">
<font color="white">
<center>
Committed to <strong>you, your privacy</strong> and <strong>an open web</strong>
</center>
</br>
<center>
<a id="hover" type="button" href="https://www.mozilla.org/en-US/firefox/new/#download-fx" class="btn btn-success btn-lg">FREE DOWNLOAD</a>
</center>
</font>
</h2>
</div>
</br>
</div>
<div id="events" style="background-color: #fff9c4;">
<center>
<h1>Upcoming events</h1>
<h2>Houston, we have nothing here.<b>Stay tuned.<b></h2>
</br>
<h2>Past events</h2>
<!--Past Events-->
<section class="row">
<div class="container col-md-4">
<img src="1.jpg" id="hide_on_hover" alt="mozilla addons" class="img img-responsive">
<div id="hover_on" class="w3-hover-opacity w3-hover-grey">
Mozilla AddOns Workshop at NIEC</br>19 Aug 2017 11:00 A.M
</div>
<div id="hover_stuff" class="w3-animate-zoom">
<img src="2.jpg" class="img img-responsive">
The Workshop was organised by the Moz-NIEC Club
</div>
</div>
</section>
<!--/Past Events-->
<button class="btn btn-lg btn-primary" style="margin: 15px;">More Events</button>
</center>
<!-- STUFF -->
</div>
<div id="about_us">
<!-- MORE STUFF -->
</div>
<div id="contact_us">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeZor6fJlqpJLuwYkmKWW4UjJGVShNgfSk3AGe8zbMEnkKxdg/viewform?embedded=true" height="1200" width="100%">Loading...</iframe>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>