-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (74 loc) · 2.74 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
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap" rel="stylesheet"> -->
<link
href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;1,9..144,700&family=Montserrat:wght@500;700&display=swap"
rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-grid.css">
<link rel="stylesheet" href="css/bootstrap-utilities.css">
<link rel="stylesheet" href="css/bootstrap-reboot.css">
<link rel="stylesheet" href="css/my.css">
<title>Frontend Mentor | Product preview card component</title>
</head>
<body>
<div class="container my-container">
<div class="d-none d-sm-block" style="padding-bottom: 60px;"></div>
<div class="row">
<div class="col-md-3 d-none d-sm-block"></div>
<div class="col-md-6 col-xs-12 main">
<div class="row">
<div class="col-md-6 d-none d-xxl-block left">
<img src="images/image-product-desktop.jpg" class="product-img-desktop">
</div>
<div class="col-md-6 d-block d-sm-none left">
<img src="images/image-product-mobile.jpg" class="product-img-mobile">
</div>
<div class="col-md-6 col-xs-12 right">
<div class="product-type">
<p>PERFUME</p>
</div>
<div class="product-name">
<p>Gabrielle Essence Eau De Parfum</p>
</div>
<div class="content">
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.
</p>
</div>
<div class="price">
<span class="final-price">$149.99</span>
<span class="before-price">$169.99</span>
</div>
<div class="add-cart">
<button type="button" class="btn btn-success my-btn">
<img src="images/shopping-cart-icon.svg" width="15" height="16">
Add to Cart
</button>
</div>
</div>
</div>
</div>
<div class="col-md-3 d-none d-sm-block"></div>
</div>
<div class="row footer">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend
Mentor</a>.
Coded by <a href="https://github.com/m-malayeri">Mohsen Malayeri</a>.
</div>
</div>
<div class="col-md-3"></div>
</div>
</div>
</body>
</html>