-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (61 loc) · 2.72 KB
/
index.html
File metadata and controls
72 lines (61 loc) · 2.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fleX b0x</title>
<link rel="stylesheet" href="./style.css">
<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,[email protected],700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLMD/CDL53+sDLDvScVbkf5Yt6zWwS8Zz53o4yJvI0tQd8g/t1s1zF0hA7Rz0Fw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.attribution { font-size: 11px; text-align: center; margin-top: 1rem; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<header>
<nav>
<h1 class="logo"><a href="#">D_VT</a></h1>
<ul class="links">
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Resume</a></li>
</ul>
</nav>
</header>
<main>
<div class="card-container">
<picture class="card-image">
<source media="(min-width: 600px)" srcset="./images/image-product-desktop.jpg">
<img src="./images/image-product-mobile.jpg" alt="Gabrielle Essence Eau De Parfum bottle">
</picture>
<section class="card-content">
<p class="category">PERFUME</p>
<h1 class="title">Gabrielle Essence Eau De Parfum</h1>
<p class="description">
A floral, solar and voluptuous interpretation composed by Olivier Polge,
Perfumer-Creator for the House of CHANEL.
</p>
<div class="pricing">
<span class="current-price">$149.99</span>
<span class="old-price">$169.99</span>
</div>
<button class="add-to-cart">
<i class="fa-solid fa-cart-shopping"></i>
Add to Cart
</button>
</section>
</div>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">DavisVT</a>.
</div>
<footer>
</footer>
</body>
</html>