forked from durgeshsoni/upgrad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
76 lines (58 loc) · 2.03 KB
/
blog.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
<!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/blog.css">
<link rel="stylesheet" href="/styles/footer.css">
<script src="https://kit.fontawesome.com/9994241b69.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar1">
<div><img src="https://www.upgrad.com/blog/wp-content/uploads/2021/09/upgrad_logo-1.png" alt="upgrad_logo"></div>
<div id="nav-inner">
<div>EXPLORE COURSES</div>
<div style="color: red;">BLOG</div>
<div>MBA,MANAGEMENT & DEGREE</div>
<div>TOP INSTITUTES</div>
</div>
</div>
<div id="slider">
<button onclick="prev()" class="btn left"><i class="fa-solid fa-angle-left"></i></button>
<div id="items">
</div>
<button onclick="next()" class="btn right"><i class="fa-solid fa-angle-right"></i></button>
</div>
<div class="nav-2">
<div style="color: red;">All</div>
<div>
<div id="cat">
<div>Select Category</div>
<i class="fa-solid fa-caret-down"></i>
</div>
<div id="sor">
<div>Sort By</div>
<i class="fa-solid fa-caret-down"></i>
</div>
</div>
</div>
<div id="category">
</div>
<div id="sort">
</div>
<div class="show-box">
<div id="container">
</div>
<button id="btn">Load More</button>
</div>
<!-- <div id="footer">
</div> -->
</body>
</html>
<script src="./scripts/blog.js"></script>
<!-- <script type="module">
import footer from './components/footer.js'
document.getElementById('footer').innerHTML = footer();
</script> -->