-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (83 loc) · 2.91 KB
/
Copy pathindex.html
File metadata and controls
90 lines (83 loc) · 2.91 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>LexiGuess</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">
<span class="logo-icon">📖</span>
<h2>LexiGuess</h2>
</div>
<nav>
<a href="index.html" class="active">HOME</a>
<a href="about.html">ABOUT</a>
<a href="howtoplay.html">HOW TO PLAY</a>
<a href="game.html" class="btn-more">Play Now</a>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1>Unlock Your<br><span class="accent">Programming</span><br>Vocabulary</h1>
<p>Guess hidden programming words. One stage at a time.<br>Challenge your mind and grow your tech knowledge.</p>
<div class="hero-btns">
<a href="game.html"><button class="btn-primary">Play Now</button></a>
<a href="howtoplay.html"><button class="btn-secondary">How to Play</button></a>
</div>
<div class="featured-cards">
<div class="feat-card">
<div class="feat-icon">🎯</div>
<span>Guess</span>
</div>
<div class="feat-card">
<div class="feat-icon">📈</div>
<span>Stages</span>
</div>
<div class="feat-card">
<div class="feat-icon">🏆</div>
<span>Score</span>
</div>
</div>
</div>
<div class="hero-visual">
<div class="glow-ring"></div>
<div class="hero-icon">📚</div>
<div class="floating-word w1">GUESS</div>
<div class="floating-word w2">CODE</div>
<div class="floating-word w3">LEXI</div>
<div class="floating-word w4">WORD</div>
</div>
</section>
<section class="features">
<h2 class="section-title">Features</h2>
<p class="section-sub">Everything you need to master your vocabulary</p>
<div class="cards">
<div class="card">
<div class="card-icon">🎯</div>
<h3>Difficulty Levels</h3>
<p>Choose your challenge from beginner to expert mode</p>
</div>
<div class="card">
<div class="card-icon">💡</div>
<h3>Smart Feedback</h3>
<p>Instant hints and explanations to help you learn</p>
</div>
<div class="card">
<div class="card-icon">🏅</div>
<h3>Score System</h3>
<p>Track your progress and beat your high scores</p>
</div>
<div class="card">
<div class="card-icon">📴</div>
<h3>Offline Game</h3>
<p>Play anywhere, anytime without internet connection</p>
</div>
</div>
</section>
<footer>
<p>© 2026 LexiGuess — Built with ❤️ by our team</p>
</footer>
</body>
</html>