-
Notifications
You must be signed in to change notification settings - Fork 0
/
Assignment2.html
122 lines (97 loc) · 3.86 KB
/
Assignment2.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type:"text/css" href="style2.css">
<!--HEADER Should be white, with small red sneaker and navigation buttons -->
<header>
<title>Quick Sneakers</title>
<img class="smallshoe" src="/Users/designbright/Desktop/THE IRON YARD/images/logo.jpg" width="50" height="25" alt="Red Gradient Sneaker">
<nav class="nav1header">
<a href="/html/">MEN</a>
<a href="/css/">WOMEN</a>
<a href="/js/">BOYS</a>
<a href="/jquery/">GIRLS</a>
<a href="/jquery/">CUSTOMIZE</a>
</nav>
<nav class="nav2header">
<a href="/html/">Help</a>
<a href="/css/">My Account</a>
<img src="/Users/designbright/Desktop/THE IRON YARD/images/cart.jpg" alt="Shopping Cart">
<a href="/js/">Shopping Cart</a>
</nav>
</header>
</head>
<!--Start Section 1: first red section here -->
<body>
<section class="section1">
<a href="https://www.w3schools.com">Back To All Shoes</a>
<img class="largeshoe" src="/Users/designbright/Desktop/THE IRON YARD/images/shoe1.png" alt="Black and White Sneaker">
<div class="textbox1">
<h1>Quick Sneakers</h1>
<h4>SPRING/SUMMER 2017</h4>
</div>
<div class="textbox2">
<p>This paragraph introduces the sneaker
<a href="https://www.w3schools.com">Read The Reviews</a>
</div>
<div class="textbox3"
<p>$120
<a href="https://www.w3schools.com">Buy Now!</a>
</p>
</div>
</section>
<!--Section 2: White -->
<section class="togglecategories">
<a href="/html/">Product Details</a>
<a href="/css/">Size & Fit</a>
<a href="/js/">Reviews</a>
<!--Stars pic for reviews should go after the word "Reviews" -->
</section>
<section class="contenttopics">
<h2>Exciting Topic</h2>
<p>Content here</p>
<h2>Find Your Shoe Size & Fit</h2>
<p>Content here</p>
<h2>What Our Customers Are Saying!</h2>
<p>Don't take our word for it! Read what our customers have been saying about this product. We guarantee you won't be disapointed in your purchase.</p>
</section>
<!--SECTION 3: Will be in light grey and have padding around it. Should this be a new section by itself? Should it be "Title" instead of a header?-->
<section class="sec4grey">
<h2>Shop Reccomended Shoes</h2>
</section>
<!--Begin Section 4: Red with pics of sneakers -->
<section class="sneakerlists">
<img src="/Users/designbright/Desktop/THE IRON YARD/images/shoe2.png" height="150px" alt="Blue and Orange High Top">
<h3>Funny Sneakers</h3>
<h6>SPRING/SUMMER 2017</h6>
<p>
<a href="https://www.w3schools.com">$120.00</a>
</p>
<img src="/Users/designbright/Desktop/THE IRON YARD/images/shoe3.png" height="150px" alt="Black and Red Low Top">
<h3>Nimble Sneakers</h3>
<h6>SPRING/SUMMER 2017</h6>
<p>
<a href="https://www.w3schools.com">$120.00</a>
</p>
<img src="/Users/designbright/Desktop/THE IRON YARD/images/shoe4.png" height="150px" alt="Royal and Navy Blue Low Top">
<h3>Cute Sneakers</h3>
<h6>SPRING/SUMMER 2017</h6>
<p>
<a href="https://www.w3schools.com">$120.00</a>
</p>
</section>
<footer>
<img src="/Users/designbright/Desktop/THE IRON YARD/images/logo.jpg" alt="Red Gradient Sneaker">
<nav class="footernav1">
<a href="/html/">MEN</a>
<a href="/css/">WOMEN</a>
<a href="/js/">BOYS</a>
<a href="/jquery/">GIRLS</a>
<a href="/jquery/">CUSTOMIZE</a>
</nav>
<nav class ="footernav2">
<a href="https://www.w3schools.com">Shipping</a> |
<a href="https://www.w3schools.com">Terms & Conditions</a> | Copyright 2017. Sneaker Shop, LLC.
</nav>
</body>
</html>