-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.52 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
<!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>Quick Notes</title>
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="notes" id="app">
<!-- <div class="notes__sidebar col-sm-3">
<button class="notes__add" type="button">Add Note</button>
<div class="notes__list">
<div class="notes__list-items notes__list-item--selected">
<div class="notes__small-title">Lecture Notes</div>
<div class="notes__small-body">I learnt something today.</div>
<div class="notes__small-updated">Monday 8:47</div>
</div>
</div>
</div>
<div class="notes__preview col col-sm-8">
<input type="text" class="notes__title" placeholder="Enter a Title...">
<textarea class="notes__body">I m the notes body...</textarea>
</div> -->
</div>
<script src="./JS/main.js" type="module"></script>
</body>
</html>