-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
61 lines (54 loc) · 1.83 KB
/
game.html
File metadata and controls
61 lines (54 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Play - 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">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="page-hero">
<h1>Play <span class="accent">LexiGuess</span></h1>
<p>Download and start your vocabulary adventure</p>
</section>
<section class="game">
<div class="game-card">
<div class="game-big-icon">🎮</div>
<h2>LexiGuess Desktop</h2>
<p>A Java Swing desktop application for all platforms.<br>Download the game file and run it locally.</p>
<div class="game-stats">
<div class="stat">
<span class="stat-num">3</span>
<span class="stat-label">Difficulty Levels</span>
</div>
<div class="stat">
<span class="stat-num">500+</span>
<span class="stat-label">Words</span>
</div>
<div class="stat">
<span class="stat-num">∞</span>
<span class="stat-label">Replayable</span>
</div>
</div>
<button class="btn-primary btn-download" onclick="alert('Download the game file to play!')">
⬇ Download Game
</button>
<p class="game-note">Java Runtime required · Works offline</p>
</div>
</section>
<footer>
<p>© 2026 LexiGuess — Built with ❤️ by our team</p>
</footer>
</body>
</html>