-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<div id="navbar">
<button><a href="./store.html" id="store">Store</a></button>
<button><a href="./index.html" id="home">Home</a></button>
</div>
<div>
<h2>Add Products</h2>
<form action="" id="form">
<input type="text" id="mobile_brand">
<input type="text" id="mobile_name">
<input type="number" id="mobile_price">
<input type="text" id="mobile_image">
<button id="submit">Submit</button>
</form>
</div>
<!-- Navbar id:- "navbar"
link to home page and store page ids:- "home" and "store" respectively.
Input fields id:-
- Brand name :- "mobile_brand"
- Product name :- "mobile_name"
- price :- "mobile_price"
- image url :- "mobile_image"
Submit button Id:- "submit" -->
</body>
</html>
<script src="./scripts/index.js"></script>