-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (108 loc) · 3.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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(220.16deg, #ce6e5f -8%, #f19b8d 138%);
"
>
<h1>Automated Customer Service</h1>
<p>Love, death & robots</p>
</div>
<div
style="
background: linear-gradient(229.99deg, #11dee9 -26%, #017e8b 145%);
"
>
<h1>Snow in the desert</h1>
<p>Love, death & robots</p>
</div>
<div
style="
background: linear-gradient(215.32deg, #f90306 -1%, #9e0706 124%);
"
>
<h1>Life Hutch</h1>
<p>Love, death & robots</p>
</div>
<div
style="
background: linear-gradient(215.32deg, #ab4646 -1%, #ab4646 124%);
"
>
<h1>Life Hutch</h1>
<p>Love, death & robots</p>
</div>
<div
style="
background: linear-gradient(221.87deg, #8308ea 1%, #5305af 128%);
"
>
<h1>Zima Blue</h1>
<p>Love, death & robots</p>
</div>
<div
style="
background: linear-gradient(220.16deg, #ffe101 -8%, #f39102 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-1601574968106-b312ac309953?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1996&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1511447333015-45b65e60f6d5?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2023&q=80');
"
></div>
<div
style="
background-image: url('https://img.freepik.com/free-photo/track-running-red-treadmill-in-sport-field-sports-stadium-in-the-open-air_639032-2659.jpg?w=1800&t=st=1687375419~exp=1687376019~hmac=a90cb73436643ddba4ef52ceca0f5523c9ddf15543378a53dd3e382c245e45bb');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1501529301789-b48c1975542a?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1520263115673-610416f52ab6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1950&q=80');
"
></div>
<div
style="
background-image: url('https://img.freepik.com/free-photo/flat-lay-still-life-sport-composition_23-2149006381.jpg?w=2000&t=st=1687375154~exp=1687375754~hmac=db3c5a2c753bdc2ab0a1039b89f147ae8f4dab9e1d2cb4effddb459ca32cf444');
"
></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>