-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Meta-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<!--Meta-->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!--Title-->
<title>Frontend Mentor | Product preview card component</title>
<!--CSS-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!--Fonts-->
<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=Fraunces:opsz,wght@9..144,700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<div class="main">
<!--Main box for elements-->
<div class="row">
<!--Rows containing the two main elements, text and image-->
<div class="Top-Section col-lg-6 col-sm-12">
<!--Box containing desktop and mobile versions of image-->
<img class="image-main mobile" src="images/image-product-mobile.jpg" alt="image-product-mobile">
<img class="image-main desktop" src="images/image-product-desktop.jpg" alt="image-product-mobile">
</div>
<div class="Bottom-Section col-lg-6 col-sm-12">
<!--Box containing mobile and desktop versions of text element-->
<p class="sub-heading">PERFUME</p>
<h1>Gabrielle Essence Eau De Parfum</h1>
<p>A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.
</p>
<div class="Pricing">
<h2>$149.99</h2>
<p>$169.99</p>
</div>
<button><!--Button-->
<img src="images/icon-cart.svg" alt="add to cart"> Add to Cart</button>
</div>
</div>
<div class="attribution">
Challenge by <a rel ="noopener" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
</body>
</html>