-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="index.webp" rel="icon">
<link href="index.webp" rel="apple-touch-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@700&family=Source+Sans+Pro:wght@200;400;700;900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Note displaying application">
<meta name="keywords" content="note, display, application">
<meta name="author" content="Allen Ben Philipose">
<meta name="theme-color" content="#00000A">
<link rel="stylesheet" href="index.css">
<title>Notes App</title>
</head>
<body>
<div id="notes">
<h2>Notes App</h2>
<div class="inputs">
<input type="text" id="title" placeholder="Title">
<input type="text" id="body" placeholder="Body">
<select id="colors">
<option>Select Color</option>
<option value="#F39C12">Orange</option>
<option value="#58D68D">Green</option>
<option value="#2196F3">Blue</option>
</select>
<button type="button" class="add">Create</button>
</div>
<div class="notesDiv"></div>
</div>
<script src="index.js"></script>
</body>
</html>