Initial commit with HTML and CSS
This commit is contained in:
39
MainPage.html
Normal file
39
MainPage.html
Normal 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>
|
||||
Reference in New Issue
Block a user