-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.php
More file actions
28 lines (24 loc) · 926 Bytes
/
menu.php
File metadata and controls
28 lines (24 loc) · 926 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
<?php
echo
'<head>
<title>𝆕 Face the Music 𝆕</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i" rel="stylesheet">
</head>
<div>
<h1 title="Music Database">Face the Music</h1>
</div>
<hr>
<table style="width: 100%; table-layout: fixed; border-collapse: collapse; text-align: center;">
<tbody>
<tr>
<td><a href="homepage.php" class="link">Home</a></td>
<td><a href="homepage.php#about" class="link">About</a></td>
<td><a href="homepage.php#upcoming" class="link">Upcoming Concerts</a></td>
<td><a href="homepage.php#artists" class="link">Featured Artist</a></td>
<td><a href="homepage.php#previous" class="link">Previous Events</a></td>
<td><a href="homepage.php#Search:Artist" class="link">Search</a></td>
</tr>
</tbody>
</table>'
?>