-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (27 loc) · 944 Bytes
/
index.php
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>
<head>
<title>Notes App</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
Notes App
</header>
<div>
<div>
<a class="nav-link" href="new.php">Add a new note</a>
</div>
<div class="note">
<div class="titleContainer">
<span class="nt-title"></span>
<div class="nt-links">
<a class="nt-link" href="#">edit note</a>
<a class="nt-link" href="#">[X] delete note</a>
</div>
</div>
<div class="nt-content"></div>
</div>
</div>
</body>
</html>