-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.16 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.16 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
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Portfolio Under Construction</title>
<!-- Redirects after 5 seconds -->
<meta http-equiv="refresh" content="3;url=https://www.linkedin.com/in/jwsims/">
<style>
/* Set a light grey background and center content vertically & horizontally */
body {
margin: 0;
padding: 0;
background-color: #f0f0f0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
font-family: Arial, sans-serif;
}
.message {
font-size: 2em;
margin-bottom: 20px;
}
.redirect {
font-size: 1.2em;
margin-top: 20px;
}
.gif {
max-width: 300px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="message">
Portfolio under construction! Check back soon!
</div>
<!-- Waving animal gif (you can swap the URL with another gif if you prefer) -->
<img src="https://media.giphy.com/media/3oEjI6SIIHBdRxXI40/giphy.gif" alt="Waving Animal" class="gif">
<div class="redirect">
Redirecting you to my LinkedIn page!...
</div>
</body>
</html>