-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.04 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
58
59
60
61
<!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" />
<title>tap-reveal-image</title>
<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=Montserrat&family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="media.css" />
</head>
<body>
<h1 class="heading">HOVER / TAP TO REVEAL IMAGE</h1>
<i data-lucide="pointer" class="pointer"></i>
<main>
<div class="grid">
<div class="hotspot">
<img src="images/product2.png" alt="Image 1" />
</div>
<div class="hotspot">
<img src="images/product3.png" alt="Image 2" />
</div>
<div class="hotspot">
<img src="images/product4.png" alt="Image 3" />
</div>
<div class="hotspot">
<img src="images/product1.png" alt="Image 4" />
</div>
</div>
</main>
<button class="cta">
<a href="https://google.com" target="_blank">SHOP NOW</a>
</button>
<footer class="footer">
<div class="social-links">
<a href="https://instagram.com/lauramona_d" target="_blank" title="Link to Instagram">
<i data-lucide="instagram"></i>
</a>
<a
href="https://linkedin.com/in/laura-d-923248137"
target="_blank"
title="Link to LinkedIn"
>
<i data-lucide="linkedin"></i>
</a>
<a href="https://github.com/laura-dumitru" target="_blank" title="Link to GitHub">
<i data-lucide="github"></i>
</a>
</div>
</footer>
<script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12/dist/gsap.min.js"></script>
<script src="index.js"></script>
</body>
</html>