-
Notifications
You must be signed in to change notification settings - Fork 0
/
items-page.html
133 lines (73 loc) · 2.88 KB
/
items-page.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
<!-- item view -->
<html>
<head>
<title>CAPSOUL (ITEMS)</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=XXXXXXX">
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link href='https://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js">
</script>
<script src = "assets/js/script.js"></script>
</head>
<body>
<!-- topbar -->
<div class="topbar">
<nav>
<ul class="menu">
<div class ="menu-item">
<a href = "#home-section"><li>HOME</li></a>
<a href = "#about-section"><li>ABOUT</li></a>
<a href = "#faq-section"><li>FAQs</li></a>
<a href = "#contact-section"><li>CONTACT</li></a>
</div>
<div class="logo">
<li>( C A P S O U L )</li>
</div>
<div class="topbar-right">
<a href = "#tops-section"><li>TOPS</li></a>
<a href = "#bottoms-section"><li>BOTTOMS</li></a>
<a href = "#shoes-section"><li>SHOES</li></a>
<a href = "#bag-section"><li>BAG</li></a>
</div>
</ul>
</nav>
</div>
<div class= "item-text">
<div class = "item-name">basic white v-neck</div>
<div class = "item-price">$19</div>
<div class = "item-description">is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</div>
<div class = "item-size">XSMALL / SMALL / MEDIUM / LARGE</div>
<div class = "add-to-bag-button">ADD TO BAG</div>
</div>
<div class = "carousel-container">
<div id = "carousel">
<div class = "carousel-item">
<img src="assets/images/top-1.jpg">
</div>
<div class = "carousel-item">
<img src="assets/images/top-2.jpg">
</div>
<div class = "carousel-item">
<img src="assets/images/top-3.jpg">
</div>
<div class="clear"></div>
</div>
<div class = "carousel-frame">
<div class="carousel-frame-item" id="carousel-prev">
<img height="40px" src="assets/images/arrow-left.png"/>
</div>
<div class="carousel-frame-item" id="carousel-item-thumbnail">
<img src="assets/images/top-1.jpg">
<img src="assets/images/top-2.jpg">
<img src="assets/images/top-3.jpg">
</div>
<div class="carousel-frame-item" id="carousel-next">
<img height="40px" src="assets/images/arrow-right.png"/>
</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>