-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 1.72 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
<!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-1635195867433-590941c6e9c0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1298&q=80');"
>
<h3>Ferrari</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1518387801569-c9372e7f2dd9?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDQzfGJvOGpRS1RhRTBZfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
"
>
<h3>Lamborghini</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1635880624075-8d8815783c1c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80');
"
>
<h3>Camaro</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1635866869385-fabb68f0dea0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
"
>
<h3>Aston</h3>
</div>
<div
class="slide"
style="
background-image: url('https://images.unsplash.com/photo-1635074921144-a78163c43f35?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDUwfGJvOGpRS1RhRTBZfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
"
>
<h3>Tesla</h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>