-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gallery.html
144 lines (108 loc) · 2.8 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
div.container {
width: 100%;
border: 1px solid gray;
}
header, footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
}
nav {
float: left;
max-width: 160px;
margin: 0;
padding: 1em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul a {
text-decoration: none;
}
article {
margin-left: 170px;
border-left: 1px solid gray;
padding: 1em;
overflow: hidden;
}
div {background-color:#CC9999;
height:100px;
}
a {text-decoration:none}
a:hover{background-color:#CCFFFF}
</style>
</head>
<body>
<div class="container">
<header>
<h1>CLOSERS</h1>
</header>
<nav>
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Character.html">Character</a> </li>
<li><a href="Register.html">Register</a></li>
<li><a href="Login.html">Login</a> </li>
<li><a href="Review.Html">Review</a> </li>
</ul>
</nav>
<article>
<tr>
<th colspan="2" bgcolor="grey"><font face="arial" >
<marquee direction="alternate"><h1>Welcome to Closers World</h1></marquee></th>
</tr>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- 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>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="IMAGE/closer1.png" alt="Chania">
</div>
<div class="item">
<img src="IMAGE/closer2.png" alt="Chania">
</div>
<div class="item">
<img src="IMAGE/closers3.jpg" alt="Flower" width="100%" >
</div>
<div class="item">
<img src="IMAGE/sehaa.jpg" alt="Flower"width="100%">
</div>
</div>
<!-- Left and right controls -->
<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>
<p></p>
<p></p>
<p></p>
<p></p>
</article>
<footer>Copyright © Andibigboss.com</footer>
</div>
</body>
</html>