This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (113 loc) · 3.52 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
<!DOCTYPE html>
<html>
<head>
<title>My First Quiz</title>
<link rel="stylesheet" type="text/css" href="quiz.css">
</head>
<body>
<!-- first card box -->
<article class="firstcard">
<header class="top">
<h1>Dull Playing Cards</h1>
</header>
<section>
<figure>
<img src="images/cards1.jpg">
</figure>
<p>These cards are dull and worn. Broken in. They come in colors. There are 52 of them. They feel good in your hand. </p>
<div class="available">Available</div>
</section>
<section>
<header class="subheading">Specifications</header>
<div class="block">Size: 2" x 3"</div>
<div class="block">Weight: 0.5 lb</div>
<footer>Specifications Valid until 10/1/2016
</footer>
</section>
<section>
<header class="subheading">Pricing</header>
<div class="block">$2.99 ea</div>
<div class="block">$2.50 between 5 and 20</div>
<div class="block">$2.00 20+</div>
</section>
</article>
<!-- second card box -->
<article class="firstcard">
<header class="top">
<h1>Exciting Playing Cards</h1>
</header>
<section>
<figure>
<img src="images/cards2.jpg">
</figure>
<p>These cards are new, colorful, and exciting. Nobody has ever touched them. You will be able to break them.</p>
<div class="available">Available</div>
</section>
<section>
<header class="subheading">Specifications</header>
<div class="block">Size: 2" x 3"</div>
<div class="block">Weight: 0.5 lb</div>
<footer>Specifications Valid until 10/1/2016
</footer>
</section>
<section>
<header class="subheading">Pricing</header>
<div class="block">$2.99 ea</div>
<div class="block">$2.50 between 5 and 20</div>
<div class="block">$2.00 20+</div>
</section>
</article>
<!-- third card box -->
<article class="firstcard">
<header class="top">
<h1>All Aces Playing Cards</h1>
</header>
<section>
<figure>
<img src="images/cards3.jpg">
</figure>
<p>These cards are aces. You'll never lose a hand because you'll only have Aces. Then again, everyone else will, too</p>
<div class="available">Available</div>
</section>
<section>
<header class="subheading">Specifications</header>
<div class="block">Size: 2" x 3"</div>
<div class="block">Weight: 0.5 lb</div>
<footer>Specifications Valid until 10/1/2016
</footer>
</section>
<section>
<header class="subheading">Pricing</header>
<div class="block">$2.99 ea</div>
<div class="block">$2.50 between 5 and 20</div>
<div class="block">$2.00 20+</div>
</section>
</article>
<!-- fourth card box -->
<article class="bottomcard">
<header class="top">
<h1>Designed Playing Cards</h1>
</header>
<section>
<figure>
<img src="images/cards4.jpg">
</figure>
<p>These cards are designed with little text circles in them. They're cool</p>
<div class="available">Unavailable</div>
</section>
<section>
<header class="subheading">Specifications</header>
<div class="block">Size: 2" x 3"</div>
<div class="block">Weight: 0.5 lb</div>
<footer>Specifications Valid until 10/1/2016
</footer>
</section>
<section>
<header class="subheading">Pricing</header>
<div class="block">$29.99 ea</div>
<div class="block">$22.50 between 5 and 20</div>
<div class="block">$20.00 20+</div>
</section>
</article>
</body>
</html>