-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 785 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (25 loc) · 785 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>
<title>Note Taking App</title>
</head>
<body>
<div class="container">
<h1>Note</h1>
<button class="button">
<span><box-icon name="edit-alt" type="solid" color="#ffffff"></box-icon></span> Create Notes
</button>
<!-- Creating Note Container -->
<div class="notes-container">
<!-- <p contenteditable="true" class="note">
<img src="./trash-alt-solid-24.png" class="delete">
</p> -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>