-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.html
161 lines (113 loc) · 4.45 KB
/
single.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Single Page</title>
<link href="https://fonts.googleapis.com/css?family=Caveat|Homemade+Apple|Mrs+Saint+Delafield" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/chrome-bootstrap/1.5.0/chrome-bootstrap.min.css'>
<link rel="stylesheet" href="single.css">
<link rel="stylesheet" href="single media.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Courgette&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<body>
<div id="navbar" class="nav-transparent">
<!--<img src="art-background-close-up-1939485.jpg">-->
<div id="logodiv">
<img src="logo.png" alt="logo">
</div>
<div id="menu">
<ul>
<li><a class="cool-link" href="#">Home</a></li>
<li><a class="cool-link" href="#">About</a></li>
<li><a class="cool-link" href="#">Contact</a></li>
<li id="pehla"><i class="fas fa-user"></i></li>
<li id="doosra"><a class="cool-link" href="#">Sign In</a></li>
</ul>
</div>
<div id="hamburger">
<button id="menuButton"><i class="fas fa-bars fa-2x"></i></button>
</div>
</div>
<div class="sign-in">
<ul>
<li><a href="#">Sign In</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</div>
<div id="main">
<div id="main1">
<div id="product-image" >
<img class="drop-shadow" src="areezo1-black.png">
</div>
<div id="product-details" >
<div id="paragraph">
<h1>Areezo</h1>
<p id="price">Rs.2300</p>
<p id="para">Crafted in summer cool fabric, this Cypress palazzo
trouser is complimented by broad elasticated waist and flattering
flared bottom to elongate your legs, will inspire you to embrace it
for your office or occasion wear. Heighten the feminine feel ladies!</p>
</div>
<div id="size">
<h4>Size</h4>
<form action="#" class="select">
<div id="size-dropdown">
<select>
<option>Small</option>
<option>Medium</option>
<option>Large</option>
<option>Extra Large</option>
</select>
</div>
</form>
</div>
<div id="color">
<h4>Color</h4>
<form action="#" class="select">
<div id="color-dropdown">
<select>
<option>Tea-Pink</option>
<option>Maroon</option>
<option>Black</option>
<option>Teal</option>
</select>
</div>
</form>
</div>
<div id="quantity">
<h4>Quantity</h4>
<div id="quantity-box">
<div id="minus">
<i class="fas fa-minus"></i>
</div>
<div id="form-input">
<span id="form-input1">1</span>
</div>
<div id="plus" onclick="plusbutton">
<i class="fas fa-plus" ></i>
</div>
</div>
</div>
<div id="add">
<div id="cart">
<p>Add to Cart</p>
</div>
<div id="heart">
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="single.js"></script>
</html>