-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
29 lines (29 loc) · 1.14 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
<!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">
<title>Notes App</title>
<link rel="stylesheet" href="./css/main.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">Lecture 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 am the notes body...</textarea>
</div> -->
</div>
<script src="./js/main.js" type="module"></script>
</body>
</html>