-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoccer.html
87 lines (78 loc) · 2.94 KB
/
soccer.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en" class="js">
<head>
<title>Darren Cattle</title>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Darren Cattle Public Page"/>
<meta name="keywords" content="darren, cattle, developer, architect, engineer, website, design, minimal"/>
<meta name="author" content="Darren Cattle"/>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/dc.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/apps.js"></script>
<script type="text/javascript" src="js/jq.js"></script>
</head>
<body>
<nav class="navbar navbar-fixed-top" style="background-color: #F82672">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" style="color: #000">Darren Cattle</a>
</div>
<ul class="nav navbar-nav">
<li><a href="index.html" class="black">Home</a></li>
<li><a href="about.html" class="black">About</a></li>
<li><a href="jobs.html" class="black">Jobs</a></li>
<li class="active"><a href="soccer.html" class="black">Soccer</a></li>
<li><a href="art.html" class="black">Art</a></li>
<li><a href="black.html" class="black">Black Page</a></li>
</ul>
</div>
</nav>
<div class="spacer">
</div>
<div class="text-center">
<h1>Football API</h1>
<h2>favorite league, favorite stats</h2>
<select class="btn btn-primary dropdown-toggle" id="table-current">
<option value="1">Serie A</option>
<option value="2">Premier League</option>
<option value="3">La Liga</option>
<option value="4">Bundesliga</option>
<option value="5">Portugese Liga</option>
</select>
</div>
<div class="leagues" id="leagues">
<div class="leaguebox">
<h3 id="league_name" class="text-center">Serie A</h3>
<table class="table table-bordered">
<thead><tr>
<th class="text-center">Position</th>
<th class="text-center">Team</th>
<th class="text-center">Points</th>
</tr></thead>
<tbody id="standing"/>
</table>
</div>
<div class="leaguebox">
<h3 id="current-day" class="text-center">Matchday</h3>
<table class="table table-bordered">
<thead><tr>
<th class="text-center">Home Team</th>
<th class="text-center">Away Team</th>
<th id="timezone" class="text-center">Time</th>
<th class="text-center">Score</th>
</tr></thead>
<tbody id="matches"/>
</table>
</div>
</div>
<div class="text-center" id="insert">
<a href="http://api.football-data.org/">http://api.football-data.org/</a>
</div>
</body>
</html>