-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="owfont-regular.css">
<title>Momentum</title>
</head>
<body>
<time class="time"></time>
<h1>
<span class="greeting"></span>
<span class="name" contenteditable="true"></span>
</h1>
<h2>What Is Your Focus For Today?</h2>
<h2 class="focus" contenteditable="true"></h2>
<button class="bg-change-button">Change background</button>
<figure class="quote">
<blockquote>
You were not born a winner, and you were not born a loser. You are what you make yourself be.
</blockquote>
<figcaption>
Lou Holtz
</figcaption>
</figure>
<button class="btn">Change quote</button>
<div class="weather">
<i class="weather-icon owf"></i>
<div class="temperature"></div>
<div class="weather-description"></div>
<div class="humidity"></div>
<div class="city" contenteditable="true">Minsk</div>
</div>
<script src="script.js"></script>
</body>
</html>