-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (80 loc) · 2.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./CSS/styles.css" />
<link rel="stylesheet" href="
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&family=Rubik:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>Project 1</title>
</head>
<body>
<section class="section">
<div class="card">
<div class="product-image-block">
<div class="main-img-wrapper">
<img src="./assets/img/main-image.png" alt="" />
</div>
<div class="preview-wrapper">
<div class="preview selected">
<img src="./assets/img/image1.png" alt="" />
</div>
<div class="preview">
<img src="./assets/img/image2.png" alt="" />
</div>
</div>
</div>
<!-- **********Right side**********-->
<div class="product-info-block">
<h1 class="main-title">Fluted Contrast</h1>
<span class="subtitle">Mug / 33 cl</span>
<p class="text">
Fluted Contrast represents the perfect fusion between the aesthetic
and the functional. The design is elegant and modern, created out of
a deep respect for Royal British history and traditions
</p>
<div class="colors">
<h2 class="title">Color options</h2>
<ul class="color-items">
<li class="selected">
<div class="circle blue"></div>
</li>
<li>
<div class="circle green"></div>
</li>
<li>
<div class="circle red"></div>
</li>
<li>
<div class="circle black"></div>
</li>
<li>
<div class="circle yellow"></div>
</li>
</ul>
</div>
<div class="wrapper">
<div class="">
<h2 class="title">Quantity</h2>
<select class="quantity" name="quantity" id="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</div>
<div class="">
<h2 class="title">Price</h2>
<span class="price">eur 39,00</span>
</div>
</div>
<button class="btn">Add To Basket</button>
</div>
</div>
</section>
</body>
</html>