Skip to content

Commit 6213809

Browse files
Create index.html
1 parent a7c0b95 commit 6213809

1 file changed

Lines changed: 59 additions & 0 deletions

File tree

Projects/Notes App/index.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" href="style.css">
8+
<title>SmartNotezz</title>
9+
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
10+
</head>
11+
<body>
12+
<header>
13+
<div class="title">
14+
SmartNotezz
15+
</div>
16+
<img src="assets/S.svg" href="/">
17+
</header>
18+
<nav>
19+
<form class="form">
20+
<input type="search" id="searchTxt"class="search" placeholder="Search your Notes">
21+
<button class="btn" type="submit"><i class="uil uil-search"></i></button>
22+
</form>
23+
</nav>
24+
<div class="your-notes">
25+
Your Notes
26+
</div>
27+
<div class="popup-box">
28+
<div class="popup">
29+
<div class="content">
30+
<header>
31+
<p>Add a New Note</p>
32+
<i class="ui uil-times"></i>
33+
</header>
34+
<form action="#">
35+
<div class="row-title">
36+
<label>Title</label>
37+
<input type="text">
38+
</div>
39+
<div class="row-description">
40+
<label>Description</label>
41+
<textarea></textarea>
42+
</div>
43+
<button>Add Note</button>
44+
<input type="file" id="file">
45+
</form>
46+
</div>
47+
</div>
48+
</div>
49+
<div class="wrapper">
50+
<li class="add-box">
51+
<div class="icon">
52+
<img src="assets/add.svg" alt="Add">
53+
</div>
54+
<p>Add New Note</p>
55+
</li>
56+
</div>
57+
<script src="script.js"></script>
58+
</body>
59+
</html>

0 commit comments

Comments
 (0)