-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.82 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.82 KB
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
<html>
<head>
<title>Charles Leclerc by John Akers</title>
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1">
<!-- Style -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/a80270826f.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="slider desktop">
<div class="slide" style="background: url(images/landscape_0.jpg) no-repeat center center fixed;"></div>
<div class="slide" style="background: url(images/landscape_1.jpg) no-repeat center center fixed; opacity: 0;"></div>
<div class="slide" style="background: url(images/landscape_2.jpg) no-repeat center center fixed; opacity: 0;"></div>
<div class="slide" style="background: url(images/landscape_3.jpg) no-repeat center center fixed; opacity: 0;"></div>
</div>
<div class="slider mobile">
<div class="slide" style="background: url(images/mobile_0.jpg) no-repeat center center fixed;"></div>
<div class="slide" style="background: url(images/mobile_1.jpg) no-repeat center center fixed; opacity: 0;"></div>
<div class="slide" style="background: url(images/mobile_2.jpg) no-repeat center center fixed; opacity: 0;"></div>
<div class="slide" style="background: url(images/mobile_3.jpg) no-repeat center center fixed; opacity: 0;"></div>
</div>
<div id="footer">
<div id="logo"></div>
<div id="icons">
<a target="_blank" href="https://www.youtube.com/channel/UCIzIX1qgW7P3eF6JCk_afCA/featured"><i class="fab fa-youtube"></i></a>
<a target="_blank" href="https://www.twitch.tv/charlesleclerc"><i class="fab fa-twitch"></i></a>
<a target="_blank" href="https://www.instagram.com/charles_leclerc"><i class="fab fa-instagram"></i></a>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>