-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProducts.html
104 lines (102 loc) · 4.14 KB
/
Products.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="Resources/Templogo.png">
<link rel="stylesheet" type="text/css" href="Css/Products.css">
<link href='https://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,600' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=IM+Fell+DW+Pica:400italic' rel='stylesheet' type='text/css'>
<title>HighwareShop</title>
<!-- Javascript for purchase button -->
<script>
function toggleClass(el){
if(el.className == "purchasebutton"){
el.className = "newclass";
}
else {
el.className = "purchasebutton";
}
}
</script>
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "productmbl.html";
}
//-->
</script>
</head>
<body>
<div class="wrapper"><!--Useless-->
<!-- NavigationBar -->
<div class="header"><!--Useless-->
<nav>
<a href="index.html"><img src="Resources\Templogo.png" alt="Logo" width="260" height="130"></a>
<ul id="login">
<a href="Login.html"><li id="border">Register</li>
<li>Login</li></a>
</ul>
<form>
<span><input type="text" class="search rounded" placeholder="Search..."></span>
</form>
<ul id="nav">
<a href="Products.html"><li>Products</li></a>
<a href="AboutUs.html"><li>About us</li></a>
<a href="Support.html"><li>Support</li></a>
</ul>
</nav>
</div>
<!--End of NavigationBar -->
<!-- Content -->
<div class="content">
<div class="container"><!--Useless-->
<div class="product">
<div class="image"><img src="Resources\Xbox1.jpg" alt="Xbox One"></div>
<div class="text"><p>The Xbox One</p></div>
<div class="purchasebutton" onclick="toggleClass(this)" ><p>Add to cart</p></div>
</div>
<div class="product">
<div class="image"><img src="Resources\Ps4.jpg" alt="Ps4"></div>
<div class="text"><p>The Playstation 4</p></div>
<div class="purchasebutton" onclick="toggleClass(this)"><p>Add to cart</p></div>
</div>
<div class="product">
<div class="image"><img src="Resources\WiiU.png" alt="WiiU"></div>
<div class="text"><p>The WiiU </p></div>
<div class="purchasebutton" onclick="toggleClass(this)"><p>Add to cart</p></div>
</div>
<div class="product">
<div class="image"><img src="Resources\Potato.jpg" alt="Potato"></div>
<div class="text"><p>The 1st Potato </p></div>
<div class="purchasebutton" onclick="toggleClass(this)"><p>Add to cart</p></div>
</div>
<div class="product">
<div class="image"><img src="Resources\Potato.jpg" alt="Potato"> </div>
<div class="text"><p>The 2nd Potato </p></div>
<div class="purchasebutton" onclick="toggleClass(this)"><p>Add to cart</p></div>
</div>
<div class="product">
<div class="image"><img src="Resources\Potato.jpg" alt="Potato"></div>
<div class="text"><p>The 3rd Potato </p></div>
<div class="purchasebutton" onclick="toggleClass(this)"><p>Add to cart</p></div>
</div>
</div>
</div>
<!-- End of Content -->
<!-- FooterBar -->
<div class="footer"><!--Useless-->
<footer>
<p>Follow Us On</p>
<a href="http://Facebook.com" target="_blank"><img src="Resources/fb.png" height="40px" width="40px" alt="Facebook"></a>
<a href="http://Youtube.com" target="_blank"><img src="Resources/yt.png" height="40px" width="40px" alt="Youtube"></a>
<a href="http://Twitter.com" target="_blank"><img src="Resources/twitter.png" height="40px" width="40px" alt="Twitter"></a>
<a href="http://plus.google.com" target="_blank"><img src="Resources/g+.png" height="40px" width="40px" alt="Google+"></a>
<p id="call">Or Call Us</p>
<a href="support.html"><img src="Resources/call.png" height="40px" width="40px" alt="Support"></a>
<p id="trademark"><a href="https://www.iconfinder.com/iconsets/social-media-2049"> Licences</a>! ------ Insert Trademark Here! ®</p>
</footer>
</div>
<!-- End of FooterBar -->
</div>
</body>