-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 1.94 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
<!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-1584581893475-7e64f711bdcf?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8ODN8fGxpb24lMjBodW50aW5nfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=400&q=60');
background-size: cover;
"
</div>
>
<h3>Lion Pride</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1605102527478-dce17f0f7efb?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTR8fGxpb24lMjBsb3ZlfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=60');
background-size: cover;
"
>
<h3>Love Lviv</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1590613548953-5d6ee6c9244b?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NjV8fGxpb258ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=60');
background-size: cover;
"
>
<h3>Lion's Roar</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1614948727870-5365a7bdc012?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTYwfHxsaW9ufGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=60') ;
background-size: cover;
"
>
<h3>Lion Sleeps</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1604941138781-78fbefc0d888?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NTV8fGxpb258ZW58MHx8MHx8&auto=format&fit=crop&w=400&q=60');
background-size: cover;
"
>
<h3>Lion King</h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>