forked from sh-steven-doran/js-mini-challenge-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 877 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="data.js"></script>
<script defer src="index.js"></script>
<style>
img {
height: 300px;
}
</style>
<title>JS Mini Challenge: Event Handling</title>
</head>
<body>
<h1 id="header">Welcome to Ian's Liverpool FC Fan Club</h1>
<h2>Add New Player</h2>
<form id="new-player-form">
<input type="number" name="number" placeholder="Jersey Number" />
<input type="text" name="name" placeholder="Player Name" />
<input type="text" name="nickname" placeholder="Nickname" />
<input type="text" name="photo" placeholder="Photo URL" />
<input type="submit" value="Add Player" />
</form>
<hr />
<h2>All Players</h2>
<div class="player-container">
<!-- -->
</div>
</body>
</html>