-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (74 loc) · 2.64 KB
/
index.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">
<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>windy spoon 6166</title>
<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>
<!--=== matchs ===-->
<section id="match-section">
<div id="cup">
<p onclick="showMatch('Asian')">Asia Cup</p>
<p onclick="showMatch('Men')">Men Cup</p>
<p onclick="showMatch('Women')">Women Cup</p>
<p onclick="showMatch('Maharaja')">Maharaja</p>
</div>
<div id="match">
</div>
</section>
<!--=== navbar ===-->
<navbar>
</navbar>
<!--=== middle section ===-->
<section id="middle">
<!--=== sidebar ===-->
<div id="sidebar">
<div id="series">
<h4>key Series</h5>
</div>
<div>
<h4>ESPNcricinfo Apps</h5>
<a href="https://play.google.com/store/apps/details?id=com.july.cricinfo&hl=en"><span>></span> Android App</a>
<a href="https://apps.apple.com/in/app/cricinfo-live-cricket-scores/id417408017"><span>></span> iOS App</a>
</div>
<div>
<h4>Follow ESPNcricinfo</h5>
<a href="https://www.instagram.com/espncricinfo/"><span>></span> Instagram</a>
<a href="https://twitter.com/espncricinfo"><span>></span> Twitter</a>
<a href="https://www.facebook.com/Cricinfo/"><span>></span> Facebook</a>
<a href="https://www.youtube.com/espncricinfo"><span>></span> Youtube</a>
</div>
</div>
<!--=== container section ===-->
<div id="container">
</div>
<!--=== new section ===-->
<div id="news">
</div>
</section>
<!--=== popup box ===-->
<section id="popup"> </section>
<!--=== footer ===-->
<footer>
</footer>
<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/index.js"></script>
</body>
</html>