-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (122 loc) · 6.99 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=b, initial-scale=1.0">
<title>Main Page</title>
<link rel="icon" href="/resources/images/smallicon.png"></link>
<link rel="stylesheet" href="/resources/css/commonstyle.css"></link>
<link rel="stylesheet" href="/resources/css/menustyle.css"></link>
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Cardo&family=Merriweather:wght@300&family=Tinos&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Bitter&family=Permanent+Marker&family=Roboto+Mono&family=Space+Mono&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logoandname">
<img src="/resources/images/logo.png" id="logo">
</div>
<div class="navigation">
<a class="navigationlink" href="index.html">Homepage</a>
<a class="navigationlink" href="/resources/Project/shoppingcart.html">My Cart</a>
<a class="navigationlink" href="/resources/Project/accountview.html">My Account</a>
<a class="navigationlink" href="/resources/Project/signin.html">Sign Out</a>
</div>
</header>
<main>
<div class="searchbox">
<form action="">
<input type="text" name="searchbox">
<input type="submit" name="search" value="Search">
</form>
</div>
<div class="items">
<div class="filter">
<h4 id="filterlabel">Filter your results:</h4>
<hr>
<div class="fsec">
<label class="filterinput" for="book">
<input class="checkbox" type="checkbox" name="category" id="book" value="book">
Book
</label>
<label class="filterinput" for="film">
<input class="checkbox" type="checkbox" name="category" id="film" value="film">
Film
</label>
<label class="filterinput" for="magazine">
<input class="checkbox" type="checkbox" name="category" id="magazine" value="magazine">
Magazine
</label>
<label class="filterinput" for="vinyl">
<input class="checkbox" type="checkbox" name="category" id="vinyl" value="vinyl">
Vinyl
</label>
<label class="filterinput" for="other">
<input class="checkbox" type="checkbox" name="category" id="other" value="other">
Other
</label>
<hr>
</div>
<div class="fsec">
<form id = "minmax" action="POST">
<label class="filrange" for="minval">Minimum price:
<input type="number" id="min" name="minval"><br></label>
<label class="filrange" for="maxval">Maximum price:
<input type="number" id="maxval" name="maxval"></label>
</form>
<hr>
</div>
<div class="fsec">
<label for="supplier">Supplier:</label>
<input type="text" name="supplier" id="supplier"><br>
</div>
<div class="fsec">
<hr>
<label for="reviewf">Min Reviews:</label><br>
<span>0</span>
<input type="range" min="0" max="5" step="1" id="reviewf" name="reviewf">
<span>5</span>
</div>
</div>
<div class="products">
<div class="card">
<img src="/resources/images/album.jpeg" alt="Album Cover" class="productImage" style="width:100%">
<a href="/resources/Project/item_page.html"><h3>Kendrick Lamar - To Pimp a Butterfly Vinyl</h3></a>
<p class="category">Vinyl</p>
<p class="price">$29.99</p>
<a href="/resources/Project/supplierpage.html"><p class="supplier">KelebekStore</p></a>
<p>Original vinyl of Kendrick Lamar's "To Pimp a Butterfly"album.</p>
<p><button class="addtocart">Add to Cart</button></p>
</div>
<div class="card">
<img src="/resources/images/achilles.jpeg" alt="Book Cover" class="productImage" style="width:100%">
<a href="/resources/Project/item_page.html"><h3>The Song of Achilles by Madeline Miller</h3></a>
<p class="category">Book</p>
<p class="price">$12.99</p>
<a href="/resources/Project/supplierpage.html"><p class="supplier">RuyaShopping</p></a>
<p>A retelling of the Greek retelling of the myth of Achilles and the Trojan War.</p>
<p><button class="addtocart">Add to Cart</button></p>
</div>
<div class="card">
<img src="/resources/images/PCWorld.jpeg" alt="Magazine Cover" class="productImage" style="width:100%">
<a href="/resources/Project/item_page.html"><h3>PC World </h3></a>
<p class="category">Magazine</p>
<p class="price">$4.98</p>
<a href="/resources/Project/supplierpage.html"><p class="supplier">AmbrusWorld</p></a>
<p>Conquer the hackers!</p>
<p><button class="addtocart">Add to Cart</button></p>
</div>
<div class="card">
<img src="/resources/images/spaceballs.jpg" alt="Film Poster Cover" class="productImage" style="width:100%">
<a href="/resources/Project/item_page.html"><h3>Space Balls DVD</h3></a>
<p class="category">Film</p>
<p class="price">$120.99</p>
<a href="/resources/Project/supplierpage.html"><p class="supplier">Yogurt</p></a>
<p>Epic movie about fighting dark helmet with the zwarts!</p>
<p><button class="addtocart">Add to Cart</button></p>
</div>
</div>
</div>
</main>
</body>
</html>