-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.09 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>
My Gallery
</h1>
</header>
<div class="images">
<img src="aerial-view-atmosphere-clouds-cold-front-76969.jpg" alt="friends" srcset="" class="image active">
<img src="empty-gray-and-white-concrete-spiral-stairs-3023211.jpg" alt="" srcset="" class="image">
<img src="IMG_1452.JPG" alt="" srcset="" class="image">
<img src="space-research-science-astronaut-41162.jpg" srcset="" class="image">
<img src="IMG_2221.PNG" alt="" srcset="" class="image">
<img src="photo-of-mountain-under-starry-night-sky-2670898.jpg" alt="" srcset="" class="image">
<img src="IMG_2574.JPG" alt="" srcset="" class="image">
</div>
<div>
<button class="prev" disabled>Prev</button>
<button class="next">Next</button>
</div>
<script src="rider.js"></script>
</body>
</html>