-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
52 lines (48 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="./Styles//index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page</title>
</head>
<body>
<div id="links">
<div><a href="index.html">Home</a></div>
<div><a href="database.html">Dashboard</a></div>
<div><a href="buy-list.html">My Books</a></div>
<div><a href="bookmark-list.html">Bookmark</a></div>
</div>
<main>
<form action="" id="form">
<h2>Enter Book Details here</h2>
<input placeholder="Book Name" id="name" name="name" type="text" />
<input
placeholder="Auther Name"
type="text"
name="Auther"
id="auther"
/>
<input
placeholder="Book Description"
type="text"
name="Description"
id="desc"
/>
<label>Adding Date:-</label>
<input placeholder="date" type="date" name="date" id="date" />
<select name="Category" id="category">
<option value="">Select Category</option>
<option value="sports">Sports</option>
<option value="fiction">Fiction</option>
<option value="finance">Finance</option>
<option value="education">Education</option>
</select>
<input id="price" type="number" name="number" value="number" />
<input id="submit" type="submit" name="submit" value="Submit" />
</form>
</main>
</body>
<script src="./Script/index.js"></script>
</html>