-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
79 lines (58 loc) · 2.35 KB
/
Copy pathgames.html
File metadata and controls
79 lines (58 loc) · 2.35 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
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
<!DOCTYPE html>
<html>
<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" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bb-upcoming.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="topnav">
<a href="index.html"></a><img src="logo.png"></a>
<a href="odds.html">GAME ODDS</a>
<a href="games.html">UPCOMING GAMES</a>
<a href="info.html">ABOUT</a>
</div>
<div class="live">
<div class="games">
<h1>Upcoming Games!</h1>
<p>____________________________________________</p>
</div>
</div>
<div class="container">
<div class="item">
<button class="dropdown-btn">FOOTBALL</button>
<p>__________________</p>
<ul id="footballList" class="dropdown-content">
<!-- Live matches will be filled in through J.S -->
</ul>
</div>
<div class="item">
<button class="dropdown-btn">BASKETBALL</button>
<p>__________________</p>
<ul id="nbaList" class="dropdown-content">
<!-- Live matches will be filled in through J.S -->
</ul>
</div>
<div class="item">
<button class="dropdown-btn">CRICKET</button>
<p>__________________</p>
<ul id="cricketList" class="dropdown-content">
<!-- Example cricket match items -->
<li>Text for Cricket</li>
<li>Additional details</li>
</ul>
</div>
</div>
</div>
<script src="script.js"></script>
<script src="bbcoming.js"></script>
<script src="fbcoming.js"></script>
<script src="cricket.js"></script>
</body>
<footer>
</footer>
</html>