-
Notifications
You must be signed in to change notification settings - Fork 0
/
item_detail.html
55 lines (49 loc) · 2.1 KB
/
item_detail.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
<!DOCTYPE html>
<html>
<head>
<title>Mom&Kids</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header id="header-area">
<a href="#" id="logo"><img src="img/babymama.jpg" width="274" height="167"></a>
<div id="login">
<span><strong>Welcome</strong> <a href="#">Log in</a> | <a href="#">Register</a></span>
</div>
<div id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">New arrivals</a></li>
<li><a href="#">Coming soon</a></li>
<li><a href="#">My account</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
</header>
<main>
<div id="product-detail">
<div id="item-image">
<img src="img/item4.jpg">
</div>
<div id="item-info">
<h2>Ted Bear</h2>
<div>In stock: <input value="50"></div>
<div>Qty: <input value="1"></div>
<div><button id="add-to-cart" onclick="window.location.href='inline_item.html'">Add To Cart</button></div>
</div>
<div class="sibling-for-float"></div>
</div>
<div id="product-description">
<h3>Description</h3>
<p>
This amazing Ted Talking Wacky Wobbler Bobble Head features the foul-mouthed teddy bear as a 7-inch bobbler with smirking mouth and beer in hand and Ted talks! That's, right, this Ted Wacky Wobbler features the following 4 phrases: "Hey, Johnny, how about a beer, huh? Ooh, couple of Charles Brewkowski's?", "That's my bad. I was sending a tweet.", "I love you girls, you know. Somewhere out there are four terrible fathers I wish I could thank for this great night." and "Maybe you should say no to a Snickers bar every once in a while." Ages 17 and up.
</p>
</div>
</main>
<footer>
<div id="footer-area">
<p id="copyright">©2014 Mom&Kid. All rights reserved.</p>
</div>
</footer>
</body>
</html>