-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.22 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.22 KB
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
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./Notes.css">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<title>JVJ Notes</title>
</head>
<body>
<div id="head">
<h1 onclick="location.reload()">JVJ Notes</h1>
<div id="headright">
<a href="#" id="users">Select Users <img src="arrow.png" alt=""></a>
<div><input type="text" placeholder="Search Notes" id="input">
<a href="" id="search">Search</a>
</div>
<img src="sun.png" id="mode" alt="">
</div>
</div>
<div id="main">
<hr>
<h1 id="heading1">Welcome to JVJ Notes</h1>
<div id="addnote">
<h4>Add a Note</h4>
<textarea></textarea>
<a href="#" id="addbtn">Add Note</a>
</div>
<hr>
<h1 id="heading2">Your Notes</h1>
<hr>
</div>
</body>
<script src="./Notes.js"></script>
</html>