-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.45 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The HTML Project Landing Page</title>
<meta name="description" content="Welcome to The HTML Project's landing page. My site is currently up on GitHub, so please click the button below to get redirected. Enjoy!">
<link rel="icon" href="https://assets.thehtmlproject.com/icon.jpeg">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://assets.thehtmlproject.com/css/landers/style.css">
</head>
<body>
<div class="title-logo">
<div class="logo">
<img src="https://assets.thehtmlproject.com/icon.jpeg" alt="Logo">
</div>
<div class="title">The HTML Project</div>
</div>
<div class="description">
Welcome to The HTML Project's landing page. My site is currently up on thehtmlproject.com, so please click "Go to my Website" below to get redirected. Enjoy!
</div>
<div class="bottom-button">
<button class="primary" onclick="window.location.href='/redirect/'">Go to my Website</button>
<button class="secondary" onclick="window.location.href='/preview/'">Preview my Website</button>
</div>
<div class="countdown" id="timer">Redirecting in 5 seconds...</div>
<script src="https://assets.thehtmlproject.com/script/landers/script.js"></script>
</body>
</html>