-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtop5.html
More file actions
23 lines (21 loc) · 793 Bytes
/
top5.html
File metadata and controls
23 lines (21 loc) · 793 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top 5</title>
<link rel="stylesheet" href="top5.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class = "container">
<h1 class = "cardo-regular">Top 5 Artists</h1>
<div id="output_top5">
</div>
<div class=" text-center mt-4">
<a href="index.html" class="btn-custom-green btn mt-5 mb-5">Back to home</a>
</div>
<script src="top5.js"></script>
</div>
</body>
</html>