-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.48 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
65
66
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>Слайдер | Проект 3</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<div style="background: linear-gradient(229.99deg, #c2ab5f -26%, #b80303 145%);">
<h1>Snow in the desert</h1>
<p>Love, death & robots</p>
</div>
<div style="background: linear-gradient(215.32deg, #ffee00 -1%, #9E0706 124%);">
<h1>Life Hutch</h1>
<p>Love, death & robots</p>
</div>
<div style="background: linear-gradient(221.87deg, #0e89b9 1%, #fddc23 128%);">
<h1>Zima Blue</h1>
<p>Love, death & robots</p>
</div>
<div style="background: linear-gradient(30.16deg, #6e047c -8%, #031f7a 138%);">
<h1>Automated Customer Service</h1>
<p>Love, death & robots</p>
</div>
</div>
<div class="main-slide">
<div
style="
background-image: url('https://images.unsplash.com/photo-1529176601319-48a49e19725c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1471523835123-1172efe5eaa1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
"
></div>
</div>
<div class="controls">
<button class="down-button">
<i class="fas fa-arrow-down"></i>
</button>
<button class="up-button">
<i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>