forked from OSU-CS-340-Group-112/CS_340_final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.43 KB
/
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
42
43
44
<?php
include("config.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Torches - WORK IN PROGRESS</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" href="styles.css">
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script src="bootstrap.js"></script>
</head>
<body>
<div class="container">
<center>
<div id="landing-pg">
<h1>Torches</h1>
<div>
<<<<<<< HEAD
<a href= 'artist.html'><button class="btn btn-dark">Artists</button></a>
<a href= 'albums.html'><button class="btn btn-dark">Albums</button></a>
<a href= 'song.html'><button class="btn btn-dark">Songs</button></a>
<a href= 'genre.html'><button class="btn btn-dark">Genre</button></a>
=======
<h3>Explore releases by:</h3>
<a href= 'artists.html'><button class="btn btn-dark">Artists</button></a>
<a href= 'albums.html'><button class="btn btn-dark">Albums</button></a>
<a href= 'songs.html'><button class="btn btn-dark">Songs</button></a>
<a href= 'genres.html'><button class="btn btn-dark">Genres</button></a>
<a href= 'genre-intersect.html'><button class="btn btn-dark">Genre Intersect</button></a>
>>>>>>> upstream/main
</div>
</div>
</center>
</div>
</body>
</html>