-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (92 loc) · 2.84 KB
/
index.html
File metadata and controls
94 lines (92 loc) · 2.84 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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 App</title>
<script
src="https://kit.fontawesome.com/954a6fbf4e.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="notes.css" />
<script src="notes.js" defer></script>
</head>
<body>
<div class="wrapper">
<div class="heading">
<div class="leftitem">
<i class="fa fa-reorder" style="font-size: 24px"></i>
<p>Notes</p>
</div>
<div class="rightitem">
<i class="fa fa-search" style="font-size: 24px"></i>
<i class="fa fa-trash" style="font-size: 24px"></i>
</div>
</div>
<div class="secondheading">
<div class="leftitem">
<i class="fa fa-arrow-left" style="font-size: 24px"></i>
<p>New Notes</p>
</div>
<div class="rightitem">
<p>Save</p>
</div>
</div>
<div class="sidebar">
<div class="abovesidecontent">
<p>Notes</p>
</div>
<div class="middlesidecontent">
<div class="lightthemecontent">
<p>Light Theme</p>
<i class="fa fa-moon-o" style="font-size: 24px"></i>
</div>
<div class="darkthemecontent">
<p>Dark Theme</p>
<i class="fa fa-sun-o" style="font-size: 24px"></i>
</div>
</div>
<div class="lowsidecontent">
<p>About</p>
<span>Made By ~Ansh</span>
</div>
</div>
<div class="notescontent">
<input
type="text"
name=""
id="inputcontent"
placeholder="Type your Title"
/>
<textarea name="" id="textcontent" cols="30" rows="10"></textarea>
</div>
<div class="body">
<!-- <div class="notebox">
<h3>Health</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Optio
suscipit expedita nemo repellat accusantium!
</p>
</div>
<div class="notebox">
<h3>Health</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Optio
suscipit expedita nemo repellat accusantium!
</p>
</div>
<div class="notebox">
<h3>Health</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Optio
suscipit expedita nemo repellat accusantium!
</p>
</div> -->
</div>
<div class="newnotes">
<i class="fa fa-plus-circle" style="font-size: 36px"></i>
</div>
</div>
</body>
</html>