-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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" />
<meta name="description" content="Basil pulikuth">
<meta name="description" content="Created By basil" />
<title>Note Taking || App</title>
<!-- Remix icon cdn added -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Style css added -->
<link rel="stylesheet" href="./Css/style.css" />
<script src="./Js/app.js" defer></script>
</head>
<body>
<div class="popup-box">
<div class="popup">
<div class="content">
<header>
<p>Add a new Note</p>
<i class="ri-close-fill"></i>
</header>
<form action="">
<div class="row title">
<label for="">Title</label>
<input type="text" name="" id="">
</div>
<div class="row description">
<label for="">Description</label>
<textarea></textarea>
</div>
<button>Add Note</button>
</form>
</div>
</div>
</div>
<div class="wrapper">
<li class="add-box">
<div class="icon"><i class="ri-add-fill"></i></div>
<p>Add new note</p>
</li>
<li class="note">
<div class="details">
<p>This is Title</p>
<span
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate,
neque.</span
>
</div>
<div class="bottom-content">
<span>April 3, 2022</span>
<div class="settings">
<i class="ri-more-fill"></i>
<ul class="menu">
<li><i class="ri-pencil-line"></i>Edit</li>
<li><i class="ri-delete-bin-7-line"></i>Delete</li>
</ul>
</div>
</div>
</li>
</div>
</body>
</html>