-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.92 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
<!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">
<title>Slider</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/61bef7b685.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="slide-container">
<div class="top-slide">
<div style="background: url(Pictures/sky.jpg) no-repeat center center/cover"></div>
<div style="background: url(Pictures/Road.jpg) no-repeat center center/cover"></div>
<div style="background: url(Pictures/bird.jpg) no-repeat center center/cover"></div>
<div style="background: url(Pictures/Lily.jpg) no-repeat center center/cover"></div>
</div>
<div class="bottom-slide">
<div style="background: rgb(255, 255, 255) ; color: rgb(36, 35, 35);">
<h1>Clean</h1>
<p>Take a look at the sprouting lilies</p>
</div>
<div style="background: rgb(255, 191, 72) ; color: rgb(34, 33, 33);">
<h1 >Peace</h1>
<p>Have the sound of the tweeting birds as your music</p>
</div>
<div style="background: rgb(65, 64, 64) ;">
<h1>Adventurous</h1>
<p>Go and explore, there is always a road ahead</p>
</div>
<div style="background: rgb(88, 164, 235) ; color: rgb(37, 37, 37)">
<h1>Calm</h1>
<p>look at the sky and let your problems fade</p>
</div>
</div>
<div class="buttons">
<button class="button-right"><i class="fas fa-arrow-right"></i></button>
<button class="button-left"><i class="fas fa-arrow-left"></i></button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>