-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 909 Bytes
/
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
<!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 rel="stylesheet" href="landing_page/landing_page.css" />
<title>Landing Page</title>
</head>
<body>
<!-- You can delete the contents: 12:17:04 PM, Good Afternoon!, etc. Since they will be filled using JS-->
<time id="time"> 12:17:04 PM</time>
<h1>
<span id="greetings" class="glow">Good Afternoon! </span>
<span id="name" contenteditable="true">Emanuel</span>
</h1>
<h2 class="glow">What plans do you have for today?</h2>
<h2 id="plans" contenteditable="true"></h2>
<h1 class="glow">Neuron Fact of the hour is:</h1>
<h2 id="facts"></h2>
<script src="landing_page/landing_page.js"></script>
</body>
</html>