-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1006 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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>NOTES</title>
</head>
<body>
<div id="notes">
<h2>NOTES</h2>
<div class="inputs">
<input type="text" id="title" placeholder="Enter your NOTE title">
<input type="text" name="" id="body" placeholder="Enter NOTE body">
<select id="colors">
<option value="">Select color</option>
<option value="#72A0C1">Air superiority blue</option>
<option value="#EFDECD">Almond</option>
<option value="#F19CBB">Amaranth pink</option>
<option value="#E9D66B">Arylide yellow</option>
</select>
<button type="button" class="add">Add NOTE</button>
</div>
<div class="notesDiv"></div>
</div>
<script src="index.js"></script>
</body>
</html>