-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.62 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<title>Notes App</title>
</head>
<body>
<h1 class="heading">Notes App</h1>
<div class="container">
<div class="interact">
<div id="edit">Edit-mode On</div>
<textarea type="textarea" class="new-note"
placeholder="Enter Note Here and click the add Button after completion"></textarea>
<div class="button-container">
<button class="add-note"><i class="fa fa-plus fa-2x plus-sign"></i></button>
<div class="popover">Add a Note</div>
</div>
</div>
<div class="notes">
<div id="placeholder">You don't have any notes yet.</div>
<div class="note" id="note1">
</div>
<div class="note" id="note2">
</div>
<div class="note" id="note3">
</div>
<div class="note" id="note4">
</div>
<div class="note" id="note5">
</div>
<div class="note" id="note6">
</div>
<div class="note" id="note7">
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>