-
Notifications
You must be signed in to change notification settings - Fork 0
/
articles.html
101 lines (80 loc) · 2.75 KB
/
articles.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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/navbar.css">
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="./styles/articles.css">
<!-- <link rel="stylesheet" href="./styles/footer.css"> -->
<style>
#top-container {
background-color: rgb(236, 235, 235);
padding: 30px;
width: 100%;
}
#top-container>div {
width: 80%;
margin: auto;
}
#top-container>div>div {
font-size: 28px;
font-weight: normal;
margin-bottom: 10px;
color: #444444;
}
#top-container>div>p>a {
color: royalblue;
font-size: 16px;
}
</style>
</head>
<body>
<div id="navbar"></div>
<div id="top-container">
<div>
<div>Yummy News, Articles & Videos</div>
<p>Want to keep updated on the latest news of delicious meat-free meals and adorable animals? Check out this
section for interesting daily happenings and articles that will melt your tummy (and heart too).</p>
<br>
<p>You can also follow our <a href="https://www.facebook.com/KindMeal.my">Facebook Page</a> or <a
href="https://twitter.com/KindMeal">Twitter</a> for more news and updates.</p>
</div>
</div>
<div id="inner_body"><div id="pagination">
<div id="page"><div>Page :</div> <div>
<a style="color:blue;" href="">1</a>
<a style="color:blue;" href="">2</a>
<a style="color:blue;" href="">3</a>
<a style="color:blue;" href="">4</a>
<a style="color:blue;" href="">5</a>
<a style="color:blue;" href="">6</a>
<a style="color:blue;" href="">7</a>
<a style="color:blue;" href="">8</a>
<a style="color:blue;" href="">9</a>
<a style="color:blue;" href="">10</a>
</div>
</div>
<div>
<button id="B">Next »</button>
</div>
</div>
<div class="main">
</div>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
let navbar = document.getElementById("navbar")
import DishplayNavbar from "./components/navbar.js"
navbar.innerHTML = DishplayNavbar()
let footer = document.getElementById("footer")
import dishplayFooter from "./components/footer.js"
footer.innerHTML = dishplayFooter()
</script>
<script src="./scripts/articles.js"></script>