-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 768 Bytes
/
index.html
File metadata and controls
33 lines (28 loc) · 768 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Song Management</title>
</head>
<body>
<form id="musicForm">
<label for="song">Song:</label>
<input type="text" id="song" required><br>
<label for="album">Album:</label>
<input type="text" id="album" required><br>
<label for="artist">Artist:</label>
<input type="text" id="artist" required><br>
<button type="submit" id="submitsong">Add Song</button>
</form>
<table id="musicTable">
<tr>
<th>ID</th>
<th>Song</th>
<th>Album</th>
<th>Artist</th>
<th>Action</th>
</tr>
</table>
<script src="script.js"></script>
</body>
</html>