-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Preloader</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Poiret+One&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="preload">
<img class="plane" src="./img/airplane.png" alt="Fly away little dove">
<h3>Landing on the website...</h3>
<img class="cloud" id="cloud1" src="./img/cloud.png" alt="A nice fluffy cloud">
<img class="cloud" id="cloud2" src="./img/cloud.png" alt="A nice fluffy cloud">
<img class="cloud" id="cloud3" src="./img/cloud.png" alt="A nice fluffy cloud">
</div>
<div class="background">
<h1>You've made it</h1>
<div class="social">
<a href="https://github.com/orangegrove1955/css-preloader">
<i class="fas fa-code"></i>
</a>
<a href="https://orangegrove1955.github.io/">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/matthew-t-williams/">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>