-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.12 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.12 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
<!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">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Courgette%7CPoppins"
type="text/css" media="all">
<title>Project</title>
</head>
<body>
<div id="wrapper">
<!-- Time of Day -->
<div id="timecontainer">
<h1 id="timeOfDay"></h1>
</div>
<!-- Greet and Goal -->
<div id="greetcontainer">
<h2 id="GreetUser"></h2>
<h2 id="GoalofToday"></h2>
</div>
<!-- Random Quote -->
<div id="randomQuoteContainer">
<h3 id="randomQuote"></h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>