forked from y8tireu/GamehubButDifferent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 995 Bytes
/
index.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
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game Hub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Game Hub</h1>
</header>
<main>
<section id="game-list">
<!-- Games will be dynamically inserted here -->
</section>
<section id="add-game">
<h2>Add a New Game</h2>
<form id="game-form">
<label for="title">Game Title:</label>
<input type="text" id="title" required>
<label for="image">Image URL:</label>
<input type="url" id="image" required>
<label for="url">Game URL:</label>
<input type="url" id="url" required>
<button type="submit">Add Game</button>
</form>
</section>
</main>
<footer>
<p>©Sanjivram Game Hub</p>
</footer>
<script src="script.js"></script>
</body>
</html>