-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
49 lines (42 loc) · 1.08 KB
/
gallery.php
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/gallery.css" />
<title>Gallery</title>
</head>
<body>
<!--header-->
<?php include_once('header.php');?>
<h1 class="h1">The Pepper's Grand Hotel Gallery</h1>
<div class="gallery">
<img
src="images/img-1.jpg"
class="gallery__photo gallery__photo--p1"
alt=""
/>
<img
src="images/img-2.jpg"
class="gallery__photo gallery__photo--p2"
alt=""
/>
<img
src="images/img-3.jpg"
class="gallery__photo gallery__photo--p3"
alt=""
/>
<img
src="images/img-4.jpg"
class="gallery__photo gallery__photo--p4"
alt=""
/>
<img
src="images/img-5.jpg"
class="gallery__photo gallery__photo--p5"
alt=""
/>
</div>
<!--Footer-->
<?php require_once('footer.php');?>
</body>
</html>