-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (107 loc) · 5.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sticky notepad</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body >
<!-- https://getwaves.io/
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#00000042" fill-opacity="1" d="M0,160L34.3,176C68.6,192,137,224,206,240C274.3,256,343,256,411,240C480,224,549,192,617,202.7C685.7,213,754,267,823,277.3C891.4,288,960,256,1029,224C1097.1,192,1166,160,1234,160C1302.9,160,1371,192,1406,208L1440,224L1440,0L1405.7,0C1371.4,0,1303,0,1234,0C1165.7,0,1097,0,1029,0C960,0,891,0,823,0C754.3,0,686,0,617,0C548.6,0,480,0,411,0C342.9,0,274,0,206,0C137.1,0,69,0,34,0L0,0Z"></path>
</svg> -->
<div class="full-width">
<div class="container">
<div class="hearder pt-4 d-flex justify-content-around">
<div class="headtext">
<h1>STICKY NOTEPAD</h1>
<p>keep it notes everyday</p>
</div>
<div class="logo">
<img src="./image/icon.png" alt="logo">
</div>
</div>
<!-- search bar arear -->
<div class="search mb-5">
<div class="row justify-content-center">
<div class=" search d-flex justify-content-center">
<div class="col-8">
<input type="text" id="searching" class="form-control inp-own" placeholder="search notes">
</div>
<div class="search-icon p-1">
<!-- <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
</svg> -->
<span class="material-icons"> search </span>
</div>
<!-- <button class="btn btn-primary btn-own" type="button" id="button-addon2">Button</button> -->
</div>
</div>
</div>
<!-- search bar end -->
<!-- notepad -->
<div class="row" id="note-area">
<div class="modal-root col-md-6 col-lg-4 mb-3">
<div class="modals">
<div class="modal-content ">
<div class="modal-header">
<input type="text" id="title" class="form-control modal-head-text " name="" id="" placeholder="Type a title ..." required>
</div>
<div class="dates mt-2 m col-8 d-flex justify-content-center">
<small id="set-dates">Today: 02 decumbor 2008</small>
</div>
<div class="modal-body">
<textarea id="body-text" class="form-control modal-head-text" placeholder="Type a description ..." required></textarea>
</div>
<div class="btns">
<div class=" d-flex justify-content-center">
<a href="#" class="icon-btn" id="add-btn">
<!-- <span class="material-icons"> post_add </span> -->
<span class="material-icons" > add_task </span>
</a>
<!-- future i will implamentrion the color area -->
<!-- <a href="" class="icon-btn" id="color-btn">
<span class="material-icons"> palette </span>
</a>
<div class="color-plate" id="plates">
<div class="all-color d-flex justify-content-center">
<div class="plate blue"></div>
<div class="plate yellow"></div>
<div class="plate red"></div>
<div class="plate purple"></div>
<div class="plate white selector"></div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- notepad end -->
<!-- <div class="alert-box">
<div class="col-6 d-flex justify-content-center">
<div class="position-absolute p-5 bg-light top-50 start-50 translate-middle">
<div class="alert-content">
<div class="alert-header ">
<p class="h5">are you suere?</p>
</div>
<div class="alert-body mt-3 mb-3">
<p>do you want delete item </p>
</div>
<div class="d-flex justify-content-center">
<button class="cancle">Cancle</button>
<button class="delete">Delete</button>
</div>
</div>
</div>
</div>
</div> -->
<script src="./js/app.js"></script>
</body>
</html>