-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="./styledemo.css"> -->
<script src="https://cdn.tailwindcss.com" defer></script>
<script>
tailwind.config = {
theme: {
screens: {
mobile: "375px",
desktop: "1440px",
},
extend: {
colors: {
darkCyan: "hsl(158, 36%, 37%)",
cream: "hsl(30, 38%, 92%)",
veryDarkBlue: "hsl(212, 21%, 14%)",
darkGrayishBlue: "hsl(228, 12%, 48%)",
white: "hsl(0, 0%, 100%)",
},
},
},
};
</script>
<title>Product preview card</title>
</head>
<body class="border-box">
<div class="container w-4/5 h-3/4 my-16 mx-auto">
<div class="card-container flex w-3/5 h-3/5 my-16 mx-auto">
<section class="img">
<img src="./images/image-product-desktop.jpg" alt="">
</section>
<section class="wordie">
<p>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>
<p>$149.99 <span>169.99</span></p>
<a href="#">Add to Cart</a>
</section>
</div>
</div>
</body>
</html>