-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 2.75 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
<!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>Swoosh</title>
</head>
<body>
<div class="slider-container">
<div class="left-slide">
<div style="background-color: #fd3555">
<!-- Add a heading followed by a paragraph here-->
<h1>Nature flower</h1>
<p>all in the pink</p>
</div>
<div style="background-color: #2a86ba">
<!-- Add a heading followed by a paragraph here-->
<h1>Blue Sky</h1>
<p>with it's mountains</p>
</div>
<div style="background-color: #252e33">
<!-- Add a heading followed by a paragraph here-->
<h1>Lonely castle</h1>
<p>in the wilderness</p>
</div>
<div style="background-color: #ffb866">
<!-- Add a heading followed by a paragraph here-->
<h1>Flying eagle</h1>
<p>in the sunset</p>
</div>
</div>
<div class="right-slide">
<!-- Put a proper url in the below div-->
<div
style="
background-image: url('https://images.unsplash.com/photo-1508768787810-6adc1f613514?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=e27f6661df21ed17ab5355b28af8df4e&auto=format&fit=crop&w=1350&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1519981593452-666cf05569a9?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=90ed8055f06493290dad8da9584a13f7&auto=format&fit=crop&w=715&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1486899430790-61dbf6f6d98b?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=8ecdee5d1b3ed78ff16053b0227874a2&auto=format&fit=crop&w=1002&q=80');
"
></div>
<div
style="
background-image: url('https://images.unsplash.com/photo-1510942201312-84e7962f6dbb?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=da4ca7a78004349f1b63f257e50e4360&auto=format&fit=crop&w=1050&q=80');
"
></div>
</div>
<div class="action-buttons">
<button class="down-button">
<!-- Use fas fa-arrow-down icon here. Refer instructions -->
<i class="fas fa-arrow-down"></i>
</button>
<button class="up-button">
<!-- Use fas fa-arrow-up icon here. Refer instructions -->
<i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>