-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400&subset=cyrillic-ext" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Gallery</title>
</head>
<body>
<!-- Wraparound Progress Bar -->
<div class="progress-top"></div>
<div class="progress-right"></div>
<div class="progress-bottom"></div>
<div class="progress-left"></div>
<div class="container">
<!-- Tabs -->
<div class="tabs">
<div class="tabs__caption">
<p class="active">Tab #1</p>
<p>Tab #2</p>
</div>
<div class="tabs__content active">
Cat ipsum dolor sit amet, run around the house at 4 in the morning. Kitty loves pigs and eat plants, meow, and gets sick because the kitty ate plants.
</div>
<div class="tabs__content">
Cat ipsum dolor sit amet, find a way to fit in tiny box lies down. Attack feet! Why use post when this sofa is here?
</div>
</div>
<!-- Gallery with Galleria Plugin -->
<div class="galleria">
<img src="./img/syna-tiger-resort-272715-unsplash.jpg" alt="Photo by Syna Tiger Resort on Unsplash">
<img src="./img/niedblog-de-1170791-unsplash.jpg" alt="Photo by >>> niedblog.de on Unsplash">
<img src="./img/sacha-styles-560961-unsplash.jpg" alt="Photo by Sacha Styles on Unsplash">
<img src="./img/maria-teneva-1343355-unsplash.jpg" alt="Photo by Maria Teneva on Unsplash">
<img src="./img/jean-wimmerlin-528108-unsplash.jpg" alt="Photo by jean wimmerlin on Unsplash">
<img src="./img/jeff-rodgers-307783-unsplash.jpg" alt="Photo by Jeff Rodgers on Unsplash">
<img src="./img/eric-macdonell-58836-unsplash.jpg" alt="Photo by Eric MacDonell on Unsplash">
<img src="./img/ian-mcgrory-993023-unsplash.jpg" alt="Photo by Ian McGrory on Unsplash">
<img src="./img/isak-combrinck-1150832-unsplash.jpg" alt="Photo by Isak Combrinck on Unsplash">
</div>
</div>
<!-- Google jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Galleria Slider -->
<script src="galleria/galleria-1.5.7.min.js"></script>
<!-- Custom JS -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>