-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,regular,500,600,700" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
<title>Landing Page</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Landing Page" />
<meta name="description" content="This is one Project I have made that tells the Time and according to which time it is, it shows in the background if it is morning, afternoon, or night!" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://thegladietor.github.io/Landing-Page/" />
<meta property="og:title" content="Landing Page" />
<meta property="og:description" content="This is one Project I have made that tells the Time and according to which time it is, it shows in the background if it is morning, afternoon, or night!" />
<meta property="og:image" content="https://thegladietor.github.io/Landing-Page/img/logo-color.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://thegladietor.github.io/Landing-Page/" />
<meta property="twitter:title" content="Landing Page" />
<meta property="twitter:description" content="This is one Project I have made that tells the Time and according to which time it is, it shows in the background if it is morning, afternoon, or night!" />
<meta property="twitter:image" content="https://thegladietor.github.io/Landing-Page/img/logo-color.png" />
<!-- Meta Tags Generated with https://metatags.io -->
<link rel="icon" type="image/x-icon" href="./img/logo-fav.png" style="width: 50px; height: 20px;">
</head>
<body>
<time id="time"></time>
<h1>
<span id="greeting"></span>
<span id="name" contenteditable="true"></span>
</h1>
<h2>What Is Your Focus For Today?</h2>
<h2 id="focus" contenteditable="true"></h2>
<script src="main.js"></script>
</body>
</html>