This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.php
39 lines (39 loc) · 1.66 KB
/
credits.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Photong | Match Your Photo to a Song</title>
<?php include("head-include.php"); ?>
<link rel="stylesheet" href="include/bootstrap.min.css">
<link rel="stylesheet" href="include/theme.css">
<link rel="stylesheet" href="styles.css">
<script src="include/jquery-3.4.1.min.js"></script>
<script src="include/popper.min.js"></script>
<script src="include/bootstrap.min.js"></script>
<script src="cookies.js"></script>
</head>
<body>
<div class="header">
<?php include("header.php"); ?>
<div class="container hero">
<div class="row">
<div class="col">
<h1>Credits</h1>
<p>
This project is made possible with the following tools:
</p>
<ul>
<li><a href="https://getbootstrap.com" target="_blank">Bootstrap 4, jQuery and Popper.js</a></li>
<li><a href="http://www.coolphptools.com/color_extract" target="_blank">Image Color Extract</a></li>
<li><a href="https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api" target="_blank">iTunes Search API</a></li>
<li><a href="https://www.w3schools.com" target="_blank">W3Schools</a></li>
<li>and various posts on <a href="https://www.stackoverflow.com" target="_blank">StackOverflow</a>!</li>
</ul>
</div>
</div>
</div>
</div>
<?php include("footer.php"); ?>
</body>
</html>