-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (97 loc) · 3.24 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
<!DOCTYPE html>
<html>
<head>
<title>ProductCards</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body class="flex">
<article class="flex">
<header class="productTitle">
<h2>Phantom Cat Arm</h2>
</header>
<section class="flex description">
<img class="productImage" src="http://i.imgur.com/ju8TpTo.gif" width="100" height="100">
<p class="productDescription">arm of a cat that will magically come in and knock over your game board pieces</p>
<p class="avail">Product is Currently not available</p>
</section>
<section class="specifications">
<header>Specificiations</header>
<p>Size: 8 inches</p>
<p>Weight: 5 oz</p>
<footer>product becomes invalid when used without actual cat</footer>
</section>
<section class="pricing">
<header>Pricing</header>
<p>1 -5: $5/each</p>
<p>5 - 10: $4/each</p>
<p>10-15: $3/each</p>
</section>
</article>
<article class="flex">
<header class="productTitle">
<h2>Magic Does-Your-Hair-For-You-er</h2>
</header>
<section class="flex description">
<img class="productImage" src="http://i.imgur.com/Q2VwXBP.jpg" width="100" height="100">
<p class="productDescription">illustrated arms come in and effortlessly style your hair for you each morning.</p>
<p class="avail">Will be available soon</p>
</section>
<section class="specifications">
<header>Specificiations</header>
<p>Size: 24" by 5"</p>
<p>Weight: 2 pounds</p>
<footer>product will not actually style your hair beyond your current hair styling skills</footer>
</section>
<section class="pricing">
<header>Pricing</header>
<p>2-10: $100/each</p>
<p>12-30: $90/each</p>
<p>32 +: $80/each</p>
</section>
</article>
<article class="flex">
<header class="productTitle">
<h2>Entropy Generator</h2>
</header>
<section class="flex description">
<img class="productImage" src="http://i.imgur.com/VBAzemA.gif" width="100" height="100">
<p class="productDescription">Effortlessly creates entropy in any open or closed system</p>
<p class="avail">Product available in all areas</p>
</section>
<section class="specifications">
<header>Specificiations</header>
<p>Size: none</p>
<p>Weight: none</p>
<footer>product results are given regardless of the desire of said product results</footer>
</section>
<section class="pricing">
<header>Pricing</header>
<p>1-5 instances: $1000</p>
<p>5-100 instances: $10</p>
<p>100+ instances: no charge</p>
</section>
</article>
<article class="flex">
<header class="productTitle">
<h2>Chocolate Chip Cookies</h2>
</header>
<section class="flex description">
<img class="productImage" src="http://i.imgur.com/0dbibo9.jpg" width="100" height="100">
<p class="productDescription">Warm, delicious chocolate chip cookies made with real butter</p>
<p class="avail">availablity subject to proximity to grandmothers</p>
</section>
<section class="specifications">
<header>Specificiations</header>
<p>Size: 3"</p>
<p>Weight: 4 oz</p>
<footer>product will not be warm if it is cool</footer>
</section>
<section class="pricing">
<header>Pricing</header>
<p>1-12: $3/each</p>
<p>2-24: $2.50/each</p>
<p>25+: $2.25/each</p>
</section>
</article>
</body>
</html>