forked from utorteam13/Team13_Project1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandings.html
More file actions
40 lines (35 loc) · 1.86 KB
/
Copy pathstandings.html
File metadata and controls
40 lines (35 loc) · 1.86 KB
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Electrolize&display=swap" rel="stylesheet">
<title>Footy Scores Social</title>
</head>
<body>
<div class="navbar pullUp">
<a href="index.html"><img src="images/soccer.png" alt="soccerimg" class="soccerimg"></a>
<a href="live.html">LIVE SCORES</a>
<a href="past.html">PAST SCORES</a>
<a href="standings.html">STANDINGS</a>
</div>
<div id="leagueIconContainer" class="grid-x">
<img class="standingsicon cell small-2" id="country1" data-id="149" data-name="England" src="https://apiv3.apifootball.com/badges/logo_country/44_england.png"></img>
<img class="standingsicon cell small-2" id="country2" data-id="177" data-name="Ghana" src="https://apiv3.apifootball.com/badges/logo_country/50_ghana.png"></img>
</div>
<div>
<h1 class="favteam">View the standings of your favorite league</h1>
<button class="button small expanded" id="clear">Clear Your Favorites</button>
<div id="storedLeagues"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/js/foundation.min.js" crossorigin="anonymous"></script>
<script src="./standings.js"></script>
<!-- <script src="./pastscript.js"></script> -->
<!-- <script src="./livescript.js"></script> -->
<!-- <script src="./script.js"></script> -->
</body>
</html>