-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathstore.html
File metadata and controls
54 lines (54 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="store.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Store</title>
</head>
<body>
<header>
<a href="index.html"><img class="headerLogo" src="logos/head_Logo.png"></a>
<div class="center">
<a class="headerLink" href="index.html">Home</a>
<a class="headerLink" href="technology.html">Technology</a>
<a class="headerLink" href="aboutUs.html">About us</a>
<a class="headerLink" href="store.html">Store</a>
</div>
</header>
<div class="container">
<img class="myDIV" src="images/military.jpeg">
<div class="hide">
<div class="card">
<h1>Ground Solar Panel</h1>
<p class="price">$499.99</p>
<p>Solar Panel for ground use</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
<div class="container">
<img class="myDIV" src="images/awning.jpeg">
<div class="hide">
<div class="card">
<h1>Fabric</h1>
<p class="price">$19.99 per square foot</p>
<p>Solar Fabric to use in place of Regular fabric</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
<div class="container">
<img class="myDIV" src="images/dessert.jpeg">
<div class="hide">
<div class="card">
<h1>Bulk Order</h1>
<p class="price">25% discount for order of 50 units or more</p>
<p>Order in bulk</p>
<p><button>More Info</button></p>
</div>
</div>
</div>
</body>
</html>