-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
32 lines (30 loc) · 1.21 KB
/
page.html
File metadata and controls
32 lines (30 loc) · 1.21 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
<!DOCTYPE html>
<html lang="eng">
<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">
<title>Record Your Trade!</title>
<link rel="stylesheet" href="/page.css">
</head>
<body>
<div class="notes" id="app">
<div class="notes__sidebar">
<button class="notes__add" type="button">Add Note</button>
<div class="notes__list">
<div class="notes__list-item notes__list-item--selected">
<div class="notes__small-title">Trade Notes</div>
<div class="notes__small-body">I learnt nothing today.</div>
<div class="notes__small-updated">Thursday 3:30pm</div>
</div>
</div>
</div>
<div class="notes__preview">
<input class="notes__title" type="text" placeholder="Enter a title...">
<textarea class="notes__body">I bought...</textarea>
</div>
</div>
<script src="./js/main.js" type="module"></script>
<div class id="home" style="text-align: center;"><a href="/welcome.html"><button>Home</button></a></div>
</body>
</html>