-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductdetail-1.html
179 lines (175 loc) · 8.91 KB
/
productdetail-1.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE HTML>
<html>
<head>
<title>Product Detail</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
</head>
<body>
<!-- Header Section -->
<div class="header flex-container">
<a href="home.html">
<img id="logo" src="images/Logo.png">
</a>
<div class="headerContent">
<div class="headerUpper flex-container">
<div class="searchBox headerUpper-child">
<form method="get" action="/search" id="search">
<input name="q" type="text" placeholder="Search pet outdoor gear" />
</form>
</div>
<div class = "myAccount headerUpper-child"> My Account </div>
<img class = "headerUpper-child" id = "profile-pic" src="images/User.png">
<img class = "headerUpper-child" id = "cart" src="images/Cart.png">
</div>
<hr class = "headerLine" width="900px" color="white">
<ul class = "headerLower flex-container">
<li><a class = "nav" href="home.html#shop-bookmark">SHOP</a></li>
<li><a class = "nav" href="#">STORE</a></li>
<li><a class = "nav" href="#">ABOUT</a></li>
</ul>
</div>
</div>
<!-- Back to Results link -->
<div class="back-link-sect">
<a href="productlist.html" class="back-link-text"> < Back to Results</a>
</div>
<!-- Product Details -->
<div class="product-detail flex-container">
<div class="product-detail-pic">
<div class="large-pic-container">
<img src="images/bs1.jpg" alt="enlarged product picture" class="large-pic">
</div>
<div class="small-pic-container flex-container">
<img src="images/bs1.jpg" alt="small product picture" class="small-pic">
<img src="images/detail2.jpg" alt="small product picture" class="small-pic">
</div>
</div>
<div class="product-detail-text">
<div class="pd-brand">Chai's Choice</div>
<div class="pd-name">Chai's Choice 3M Reflective Dog Harness</div>
<div class="pd-price">$25.00 USD</div>
<!-- size -->
<div class="pd-options" id="pd-size">
<div class="pd-option-text">Select a Size:</div>
<select class="pd-option-dropdown">
<option>Strawberry</option>
<option>Blackberry</option>
<option>Crazyberry</option>
<option>Camouflage</option>
<option>Night Moon</option>
<option>Fire Orange</option>
</select>
</div>
<!-- color -->
<div class="pd-options" id="pd-color">
<div class="pd-option-text">Select a Color:</div>
<select class="pd-option-dropdown">
<option>Tiny</option>
<option>Small</option>
<option>Medium</option>
<option>Large</option>
</select>
</div>
<!-- Quantity -->
<div class="pd-options" id="pd-quantity">
<div class="pd-option-text">Quantity</div>
<select class="pd-option-dropdown">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<button class="cart-button">ADD TO CART</button>
</div>
</div>
<!-- Product Description -->
<div class="pro-descrip">
<div class = "section-title">
<span class="title-text">Product Description</span>
</div>
<div class="pro-descrip-container">
<p class="pro-descrip-content">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</div>
<!-- Reviews -->
<div>
<div class = "section-title">
<span class="title-text">Reviews</span>
</div>
<div class = "total-rating-container flex-container">
<img src="images/five-stars.png" alt="five-stars" class="total-rating">
<div class="num-rating"> 1 REVIEW </div>
</div>
<hr>
<div class="review-content-container flex-container">
<div class="cus-info">
<img src="images/five-stars.png" alt="five-stars" class="individual-rating">
<div class="cus-name"> LOREMIPSUM </div>
<div class="cus-location">Berkeley, CA</div>
</div>
<div class="review-content">
<div class="review-date">SEPTEMBER 28, 2017</div>
<div class="review-title">Great Product!</div>
<p class="review-details">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.</p>
</div>
</div>
</div>
<!-- Footer Section -->
<div class="footer major-sec" id="pl-footer">
<hr>
<div class="footer-content flex-container">
<!-- Resources -->
<div class="resources footer-section">
<div class="footer-title">Resources</div>
<ul class="footer-list">
<li>Create a Wedding Registry</li>
<li>Returns</li>
<li>Order Status</li>
<li>Sales Item Policy</li>
<li>Sales Tax Policy</li>
<li>Updated Privacy Policy</li>
<li>International Shipping Policy</li>
<li>Learning Resources</li>
<li>Gift Card Terms and Conditions</li>
</ul>
</div>
<!-- About Muddy Paws -->
<div class="about footer-section">
<div class="footer-title">About Muddy Paws</div>
<ul class="footer-list">
<li>About Muddy Paws</li>
<li>Press Releases</li>
<li>Group Sales</li>
<li>Land Your Dream Job</li>
<li>Affiliate Program</li>
<li>Site Map</li>
<li>What's Wrong with this Page?</li>
</ul>
</div>
<!-- Social Media -->
<div class="social-media flex-container">
<div class="SM-container">
<img src="images/facebook-logo.png" alt="facebook-logo" class="SM-logo">
</div>
<div class="SM-container">
<img src="images/twitter-logo.png" alt="twitter-logo" class="SM-logo">
</div>
<div class="SM-container">
<img src="images/instagram-logo.png" alt="instagram-logo" class="SM-logo">
</div>
<div class="SM-container">
<img src="images/youtube-logo.png" alt="youtube-logo" class="SM-logo">
</div>
</div>
</div>
</div>
</body>
</html>