-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresult.html
58 lines (51 loc) · 1.62 KB
/
result.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
<!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>Result</title>
<link rel="stylesheet" href="styles/liveScore.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>
<div id="my_nav">
<h1><a href="liveScore.html" class="upcomming">Livescore</a>
<h1><a href="upcomming.html" class="upcomming">Upcomming</a></h1>
<h1>Result</h1>
</h1>
</div>
<div class="main">
<div class="parent">
<div class="header">
<h2>Result</h2>
<h3 id="see_all">See all</h3>
</div>
<div class="container">
<div class="container1"></div>
<div class="container2"></div>
</div>
</div>
<div id="news"></div>
</div>
<!--=== footer ===-->
<div>
<footer id="foot">
</footer>
</div>
</body>
</html>
<script src="scripts/liveScore.js"></script>
<script type="module">
import {navbar,footer} from "./scripts/top-bottom.js";
let nav=document.querySelector("navbar");
nav.innerHTML=navbar();
let foot=document.querySelector("footer");
foot.innerHTML=footer();
import {newsData,appendnews} from './scripts/exportNews.js';
appendnews(newsData);
</script>