-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (63 loc) · 2.14 KB
/
Copy pathabout.html
File metadata and controls
68 lines (63 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About - 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" class="active">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>Meet the <span class="accent">Team</span></h1>
<p>The people behind LexiGuess</p>
</section>
<section class="about">
<div class="cards team-cards">
<div class="card team-card">
<div class="card-icon avatar">👤</div>
<h3>Member 1</h3>
<span class="role-tag">Project Manager</span>
<p>Leads the vision and keeps everything on track</p>
</div>
<div class="card team-card">
<div class="card-icon avatar">👤</div>
<h3>Member 2</h3>
<span class="role-tag">UI/UX Designer</span>
<p>Crafts the look, feel, and user experience</p>
</div>
<div class="card team-card">
<div class="card-icon avatar">👤</div>
<h3>Member 3</h3>
<span class="role-tag">Data Analyst</span>
<p>Handles word data and game logic insights</p>
</div>
<div class="card team-card">
<div class="card-icon avatar">👤</div>
<h3>Member 4</h3>
<span class="role-tag">Developer</span>
<p>Builds and maintains the core application</p>
</div>
<div class="card team-card">
<div class="card-icon avatar">👤</div>
<h3>Member 5</h3>
<span class="role-tag">Developer</span>
<p>Implements features and squashes bugs</p>
</div>
</div>
</section>
<footer>
<p>© 2026 LexiGuess — Built with ❤️ by our team</p>
</footer>
</body>
</html>