-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
43 lines (43 loc) · 1.23 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Notes taking</title>
<style>
#main{
border: 2px solid black;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 500px;
padding: 8px 10px;
background-color: black;
color: white;
}
</style>
</head>
<body>
<h1 id="notes">SEEKING NOTES </h1>
<div id="main">
<div id="title">
<label for="titl"> <h3> TITLE :</h3></label>
<input type="text" id="title" placeholder="Enter your title">
</div>
<div id="discription">
<label for="desc"><h3> DESCRIPTION :</h3></label>
<input type="text area" id="desc" placeholder="Enter your description.">
</div>
<br>
<div id="button">
<button type="submit" id="btn">add note</button>
</div>
</div>
<h1>Your notes</h1>
<div id="Div"></div>
<script src="home.js"></script>
</body>
</html>