-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.48 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
<!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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<title>Note Manager</title>
</head>
<body>
<h1>NoteManager</h1>
<div class="container">
<div class="box add-new-note">
<img class="" src="assets/square-plus-regular.svg" width="60px" alt="add-icon">
<h3>Add New Note</h3>
</div>
</div>
<div class="modal">
<div class="modal-box">
<div class="head-modal">
<h2 class="note-title"></h2>
<img class="close-modal" src="./assets/xmark-solid.svg" width="40px" height="40px" alt="">
</div>
<div class="content-modal">
<section class="title-section">
<h3>Title</h3>
<input class="input-title" type="text">
</section>
<section class="desc-section">
<h3>Description</h3>
<input class="input-desc" type="text">
</section>
</div>
<div class="btn-add">
<button class="note-button">
</button>
</div>
</div>
</div>
<div class="overlay"></div>
<script src="./script.js"></script>
</body>
</html>