-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
63 lines (60 loc) · 2.23 KB
/
Copy pathstore.html
File metadata and controls
63 lines (60 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
<!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>Store</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="store.css">
</head>
<body>
<div class="bar">
<a href="index.html">Home</a>
<a href="store.html">Store</a>
<a href="shoppingcart.html">Shopping Cart</a>
<a href="signin.html">Sign In</a>
</div>
<h1>Store</h1>
<div class="store">
<div class="search">
<div class="searchgrid">
<b>Product name:</b>
<input type="text" name="pname" placeholder="Search...">
<b>Category:</b>
<input type="text" name="category" placeholder="All">
<b>Price from:</b>
<div class="price">
<input type="text" name="pricefrom" value="€">
<b class="to">to:</b>
<input type="text" name="priceto" value="€">
</div>
<b>Minimum rating:</b>
<div class="rating">
<input type="range" name="rating" value="1" min="1" max="5" oninput="this.nextElementSibling.value = this.value">
<output>1</output>
</div>
</div>
<a class="buttoncontainer" href="#"><button type="button"><b>Search</b></button></a>
</div>
<div class="productgridlabels">
<b>Name</b>
<b>Quantity</b>
<b>Category</b>
<b>Description</b>
<b>Price</b>
<b>Add to Cart</b>
</div>
<div class="productgrid">
<p>Dragon Lighter</p>
<p>11</p>
<p>Lighters</p>
<p>As seen on TikTok. The infamous lighter everyone’s been talking about! Come see why the Dragon Lighter makes lighting way easier.</p>
<p>€19,95</p>
<a class="cartbuttoncontainer" href="shoppingcart.html">
<button class="cartbutton" type="button"><b>🛒</b></button>
</a>
</div>
</div>
</body>
</html>