-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmbapi.html
More file actions
23 lines (23 loc) · 831 Bytes
/
mbapi.html
File metadata and controls
23 lines (23 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MusicBrainz API Call</title>
<link rel="stylesheet" href="https://cdn.rawgit.com/Chalarangelo/mini.css/v3.0.1/dist/mini-default.min.css">
</head>
<body>
<div>
<h1>MusicBrainz API Call</h1>
<a href="assignments.html">Assignments Page</a>
<p>Retrieve the album discography for a given artist</p>
<form id="artist" method="GET">
<label for="name">Artist name</label>
<input type="text" name="artist" id="name">
<input type="submit" value="Go!">
</form>
<p id="albums"></p>
</div>
<table id="placeholder"></table>
<script type="text/JavaScript" src="./6.js"></script>
</body>
</html>