-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteams.html
70 lines (57 loc) · 1.84 KB
/
teams.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
<!DOCTYPE html>
<html 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">
<title>Document</title>
<link rel="stylesheet" href="./styles/teams.css">
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!--=== navbar ===-->
<navbar>
</navbar>
<img id="banner" src="https://tpc.googlesyndication.com/simgad/9737031361208091342?">
<div class="team_box">
<h4>POPULAR INTERNATIONAL TEAMS</h4>
<div id="teams1"></div>
</div>
<div class="team_box">
<h4>POPULAR WOMEN'S TEAMS</h4>
<div id="teams2"></div>
</div>
<div class="team_box">
<h4>IPL 2022 TEAMS</h4>
<div id="teams3"></div>
</div>
<div id="teamfoot">
<div>
<h6>Terms of Use</h6>
<h6>Privacy Policy</h6>
<h6>Interest-Based Ads</h6>
<h6>Addendum to the Global Privacy Policy</h6>
<h6>Feedback</h6>
</div>
<div>
<h5>© 2022 ESPN Sports Media Ltd. All rights reserved</h5>
</div>
</div>
</body>
</html>
<script type="module">
import {navbar,footer} from "./scripts/top-bottom.js";
// navbar
let nav=document.querySelector("navbar");
nav.innerHTML=navbar();
// footer
let foot=document.querySelector("footer");
foot.innerHTML=footer();
let bell=document.getElementById("bell")
bell.addEventListener('click',function(){
alert("Notification Enable Successful")
bell.style.color="yellow";
})
</script>
<script src="./scripts/teams.js"></script>