-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (108 loc) · 3.53 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>Slider</title>
<script src="./js/app.js" defer></script>
</head>
<body>
<div class="container">
<div class="sidebar">
<div
style="
background: linear-gradient(229.99deg, #943e0c -26%, #0193a3 145%);
"
>
<h1>Bombshells</h1>
<p>House, M.D.</p>
</div>
<div
style="
background: linear-gradient(215.32deg, #fff5db 1%, #49484d 128%);
"
>
<h1>Body and Soul</h1>
<p>House, M.D.</p>
</div>
<div
style="
background: linear-gradient(221.87deg, #ac0101 -1%, #f3a54d 124%);
"
>
<h1>Last Temptation</h1>
<p>House, M.D.</p>
</div>
<div
style="
background: linear-gradient(220.16deg, #4b2201 -8%, #f7b757 138%);
"
>
<h1>Control</h1>
<p>House, M.D.</p>
</div>
<div
style="
background: linear-gradient(220.16deg, #00c0c0 -8%, #e2d304 138%);
"
>
<h1>The Choice</h1>
<p>House, M.D.</p>
</div>
<div
style="
background: linear-gradient(220.16deg, #1a9ae4 -8%, #0680c7 138%);
"
>
<h1>Frozen</h1>
<p>House, M.D.</p>
</div>
</div>
<div class="main-slide">
<div
style="
background-image: url('https://images.unsplash.com/photo-1489674267075-cee793167910?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1698767008609-f5fa6137b9e6?q=80&w=2080&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1507668077129-56e32842fceb?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-1652567523140-f332398604a2?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1523681504355-8b4860f99a58?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1509114397022-ed747cca3f65?q=80&w=1935&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>
</body>
</html>