-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>Document</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="mobile.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=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat&family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1 class="heading">SIDEBAR</h1>
<p class="instructions">Open the sidebar to discover the products</p>
<main>
<div class="sidebar">
<div class="content">
<h1>VELVET COSMETICS</h1>
<div class="icon-wrapper">
<i class="arrow-up" data-lucide="chevron-up"></i>
</div>
<img class="image" src="images/product1.png" />
<p class="productname">Matte Lipstick</p>
<div class="icon-wrapper">
<i class="arrow-down" data-lucide="chevron-down"></i>
</div>
</div>
<a href="https://www.narscosmetics.co.uk" target="_blank">
<button>SHOP NOW</button>
</a>
<div class="drag">
<i data-lucide="chevrons-right"></i>
</div>
</div>
</main>
<script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script>
<script src="script.js"></script>
</body>
</html>