-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 2.5 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
<!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>Cool vertical slider with JavaScript || by Sami</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<div style="background: linear-gradient(229.99deg, #D05951 -26%, #AE050E 145%);">
<h1>beautiful flowers world it's Armenia</h1>
<p>Armenia, Lori, Alaverdi</p>
</div>
<div style="background: linear-gradient(229.99deg, #9B8D84 -26%, #7D7570 145%);">
<h1>Ararat - Armenian mountain </h1>
<p>Armenia, Bayazet, Masis</p>
</div>
<div style="background: linear-gradient(229.99deg, #937308 -26%, #724A04 145%);">
<h1>Armenian cool tourism</h1>
<p>Armenia, Lori, Stepanavan</p>
</div>
<div style="background: linear-gradient(229.99deg, #71791A -26%, #6B7F35 145%);">
<h1>Armenian mountains </h1>
<p>Armenia, Syunik, Tatev</p>
</div>
</div>
<div class="main-slide">
<div style="background-image: url('https://images.unsplash.com/photo-1620693654464-7d33c7eac5a3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1053&q=80');"></div>
<div style="background-image: url('https://images.unsplash.com/photo-1604182776702-0da797121ccb?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=967&q=80');"></div>
<div style="background-image: url('https://images.unsplash.com/photo-1585993230677-8eba15e20346?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1051&q=80');"></div>
<div style="background-image: url('https://images.unsplash.com/photo-1543862475-eb136770ae9b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=675&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="script.js"></script>
</body>
</html>