32 lines
626 B
HTML
32 lines
626 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
||
|
<link
|
||
|
rel="icon"
|
||
|
type="image/png"
|
||
|
sizes="32x32"
|
||
|
href="/images/favicon-32x32.png"
|
||
|
/>
|
||
|
|
||
|
<title>Product preview card component</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<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</p>
|
||
|
<p>$169.99</p>
|
||
|
|
||
|
<p>Add to Cart</p>
|
||
|
</body>
|
||
|
</html>
|