-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 994 Bytes
/
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
<!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</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<header>Apple Developers Group</header>
<body>
<div class="container" style="height: 100%">
<div class="navbar">
<div onclick="location.href ='new-note.html'" class="nav-item new-button">Add New Note</div>
</div>
<div class="main-container">
<div class="card test">
<div class="title">Note 1</div>
<div class="message">Some random lorem ipsum</div>
</div>
<div class="card test">
<div class="title">Note 2</div>
<div class="message">Just another random lorem ipsum</div>
</div>
</div>
</body>
<footer>© Code Node 2021</footer>
</html>