ProtoType For MainPage (HTML/CSS)

This commit is contained in:
abdelaziz
2026-01-14 14:06:28 +01:00
commit 8c2de5da79
2 changed files with 73 additions and 0 deletions

39
MainPage.html Normal file
View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Platform</title>
<link rel="stylesheet" href="MainPageStyle.css">
</head>
<body>
<h1>Team Game Platform</h1>
<div class="games-container">
<div class="game-card" onclick="location.href='member1/game.html'">
<h2>Game 1</h2>
<p>Member 1</p>
</div>
<div class="game-card" onclick="location.href='member2/game.html'">
<h2>Game 2</h2>
<p>Member 2</p>
</div>
<div class="game-card" onclick="location.href='member3/game.html'">
<h2>Game 3</h2>
<p>Member 3</p>
</div>
<div class="game-card" onclick="location.href='member4/game.html'">
<h2>Game 4</h2>
<p>Member 4</p>
</div>
<div class="game-card" onclick="location.href='member5/game.html'">
<h2>Game 5</h2>
<p>Member 5</p>
</div>
</div>
</body>
</html>