-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Карточки | Проект 1</title>
</head>
<body>
<div class="container">
<div
class="slide"
style="background-image: url('https://images.unsplash.com/photo-1549630844-bcfd0fd53954?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2370&q=80');
"
>
<h3>Maui, Hawaii, USA</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1579554632071-cffdaad3738c?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2370&q=80');
"
>
<h3>Koh Phangan, Thailand</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1595319100920-5da5c235107a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2368&q=80');
"
>
<h3>Unnamed Road, Bali, Indonesia</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1575000898743-9128b75a89b7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1626&q=80');
"
>
<h3>Kuata, Fiji</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1622940198546-3a67f98df227?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2371&q=80');
"
>
<h3>Dunedin City, Otago, New Zealand</h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>