-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gallery.html
68 lines (65 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<title>
Luscious
</title>
</head>
<style>
#p2{
display:inline;
}
* {
box-sizing: border-box;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
</style>
<body>
<h2></h2>
<h2>                     HOTEL LUSCIOUS</h2>
<a href="Luscious.html"><h3 id="p2">HOME</h3></a>
<h2 id="p2">  </h2>
<a href="Tariff.html"><h3 id="p2">TARRIF</h3></a>
<h2 id="p2">  </h2>
<a href="Services.html"><h3 id="p2">SERVICES</h3></a>
<h2 id="p2">  </h2>
<a href="Gallery.html"><h3 id="p2">GALLERY</h3></a>
<h2 id="p2">  </h2>
<a href="Contact.html"><h3 id="p2">CONTACT</h3></a>
<h2>  </h2>
<img src="banquet.jpg" alt="Main Image" width="1200px" height="600px"><br><br>
<h1 style="text-align:center";><b>Gallery</b></h1>
<div class="row">
<div class="column">
<img src="hpic1.jpg" alt="Snow" style="width:100%">
</div>
<div class="column">
<img src="hpic2.jpg" alt="Forest" style="width:100%">
</div>
<div class="column">
<img src="hpic3.jpg" alt="Mountains" style="width:100%">
</div>
</div>
<div class="row">
<div class="column">
<img src="hpic4.jpg" alt="Snow" style="width:100%">
</div>
<div class="column">
<img src="hpic5.jpg" alt="Forest" style="width:100%">
</div>
<div class="column">
<img src="hpic6.jpg" alt="Mountains" style="width:100%">
</div>
</div>
</body>
</html>