-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.html
38 lines (34 loc) · 1.1 KB
/
player.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../assets/css/styles.player.css" />
<title>Gamer's Page</title>
</head>
<body>
<header class="header">
<h1 class="title">Gamer's Page</h1>
</header>
<main class="main-content">
<section class="player-section">
<h2 class="section-title">Player Information</h2>
<div class="player-info">
<label for="player-name">Player Name:</label>
<input type="text" id="player-name" />
</div>
</section>
<section class="games-section">
<h2 class="section-title">Games List</h2>
<button class="button" id="add-game">Add Game</button>
<ul class="games-list" id="games-list">
<!-- Game items will be added dynamically using JavaScript -->
</ul>
</section>
</main>
<footer class="footer">
<p>© 2023 Gamer's Page</p>
</footer>
<script src="../assets/js/script.player.js"></script>
</body>
</html>