-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (92 loc) · 3.04 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
<!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>Slider</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<div
style="
background: linear-gradient(229.99deg, #252b24 -26%, #2a3f2d 145%);
"
>
<h1>Lake O'Hara</h1>
</div>
<div
style="
background: linear-gradient(229.99deg, #b6d6e7 -26%, #d1e8eb 145%);
"
>
<h1>Snow</h1>
</div>
<div
style="
background: linear-gradient(215.32deg, #212121 -1%, #302f30 124%);
"
>
<h1>Grey</h1>
<p>Bridge</p>
</div>
<div
style="
background: linear-gradient(221.87deg, #0d0f53 1%, #0d184f 128%);
"
>
<h1>Ocean</h1>
</div>
<div
style="
background: linear-gradient(220.16deg, #5f4a10 -8%, #5e3b07 138%);
"
>
<h1>Scenery</h1>
<p>Island</p>
</div>
</div>
<div class="main-slide">
<div
style="
background-image: url('https://images.unsplash.com/photo-1704557621848-e7a5451e5a99?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1477342620885-10e8a3790e30?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1703925154646-1a09c3380453?q=80&w=1933&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1703364342344-135b38cedcac?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1663962009102-1423a5407025?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></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>