-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
29 lines (29 loc) · 871 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Goalflix</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<nav>
<ul class="nav_ul">
<li id="title"><a href="home.html">Goalflix</a></li>
<li id="page"><a href="standings.html">Standings</a></li>
<li id="page"><a href="highlights.html">Highlights</a></li>
</ul>
</nav>
<div class="home_text">
<p>
Home of European football highlights! <br />Watch the latest here on
Goalflix
</p>
<p>Website built using Scorebat video API and Football-data API</p>
<p>
Note: Video API does not contain Bundesliga videos, apologies from the
team behind Goalflix
</p>
</div>
</body>
</html>