-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<div class="first-row">
<div id="bitcoin" class="bitcoin"></div>
<div class="todolist" id="todolist">
<label for='inputtag'>WHAT'S YOUR GOAL?</label>
<input type='text' placeholder='Goal of the day' class='inputtag' id='inputtag'/>
<button id="btn">HIT</button>
<div id="feed"></div>
</div>
<div id="weather"></div>
</div>
<div class="second-row">
<h1 id="time"></h1>
<div id="news"></div>
</div>
<p id="author"></p>
</main>
<script src="index.js" type="module"></script>
</body>
</html>