-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexotica.html
83 lines (76 loc) · 2.62 KB
/
exotica.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>
<head>
<title>HOOLIGANS 2G</title>
<link href="shift.css" rel="stylesheet">
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="nav">
<div class="container">
<ul class= "nav nav-pills">
<li><a href="home.html">Welcome To Our Homepage</a></li>
<li class = "active"><a href="images.html">Images</a></li>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="login.html">Log In</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="videos.html">Videos</a></li>
</ul>
</div>
</div>
<div class="jumbotron2">
<div class="container">
<script>
images = new Array;
images[0] = "img2.jpg";
images[1] = "img3.jpg";
images[2] = "img4.jpg";
images[3] = "img5.jpg";
setInterval( function() {
changeImage()
}, 5000);
x = 0;
function changeImage() {
document.getElementById('ad').src = images[x];
if ( x < 8 ) {
x += 1;
} else if ( x = 9 ) {
x = 0;
}
}
</script>
<img id='ad' src="img1.jpg" height="550px" width="99%">
</div>
</div>
<div class="learn-more">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Strengths</h3>
<p>From rooms to many visiting places : stay in unique spaces</p>
<p><a href="#">See strength of all members</a></p>
</div>
<div class="col-md-4">
<h3>Hire</h3>
<p>Hire any Hooligen member through his skillset</p>
<p><a href="#">See Technical Skillset of each member</a></p>
</div>
<div class="col-md-4">
<h3>Trust and Safety</h3>
<p>From Verified ID to our worldwide customer support team</p>
<p><a href="#">Learn about trust at Hooligens</a></p>
</div>
</div>
<br/>
<p><b>Follow Us</b></p>
<ul class="nav nav-pills">
<li class="active"><a href="https://www.youtube.com/channel/UCJ7mgU-ZBypnjnns2TFThQA">Youtube</a></li>
<li class="active"><a href="https://plus.google.com/+HooligansProduction">Google+</a></li>
<li class="active"><a href="#">Twitter</a></li>
</ul>
<p><i>Copyright©Hooligans Group of Developers,All Rights Reserved</i></h5>
</div>
</div>
</body>
</html>