-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOVE WORDLE</title>
<link rel="stylesheet" href="landing.css">
<link rel="stylesheet" href="hearts.css">
<link href="https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="background-animation"></div>
<div class="container">
<div class="content">
<div class="greeting">
<span class="word" style="font-size: 2.4rem; font-weight: 800; background: linear-gradient(45deg, #ff6b6b, #ff8787); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase;">Hi</span>
<span class="word highlight" style="font-size: 2.4rem; font-weight: 800; background: linear-gradient(45deg, #ff6b6b, #ff8787); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase;">Mr. Stosic</span>
<span class="word">💝</span>
</div>
<h1 class="title">
<span class="word">Are</span>
<span class="word">you</span>
<span class="word">good</span>
<span class="word">at</span>
<span class="word highlight">WORDLE</span>
<span class="word">?</span>
</h1>
<div class="example-tiles">
<div class="tile correct">L</div>
<div class="tile present">O</div>
<div class="tile correct">V</div>
<div class="tile absent">E</div>
</div>
<button class="start-button">
Accept the Challenge
<div class="button-glow"></div>
</button>
</div>
</div>
<script src="hearts.js"></script>
<script src="landing.js"></script>
<script>
// Initialize heart effects when the page loads
window.addEventListener('DOMContentLoaded', () => {
initHeartEffects();
});
</script>
</body>
</html>