-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Vertical slider</title>
</head>
<body>
<div class="slider-container">
<div class="left-slide">
<div style="background-color: #fd3555;">
<h1>nature flower</h1>
<p>all in pink</p>
</div>
<div style="background-color: #2a86ba;">
<h1>Blue sky</h1>
<p>with its mountains</p>
</div>
<div style="background-color: #252e33;">
<h1>lonely castle</h1>
<p>in the wilderness</p>
</div>
<div style="background-color: #ffb866;">
<h1>flying eagle</h1>
<p>in the sunset</p>
</div>
</div>
<div class="right-slide">
<div style="background-image: url(images/eagle.jpg);"></div>
<div style="background-image: url(images/castle.jpg);"></div>
<div style="background-image: url(images/bluesky.jpg);"></div>
<div style="background-image: url(images/flower.jpg);"></div>
</div>
<div class="action-button">
<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="script.js"></script>
<script src="https://kit.fontawesome.com/e0a583f11a.js" crossorigin="anonymous"></script>
</body>
</html>