-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
142 lines (116 loc) · 4.94 KB
/
blog.html
File metadata and controls
142 lines (116 loc) · 4.94 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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>Blog</title>
<link rel="stylesheet" href="./src/css/tail.css">
<link rel="stylesheet" href="./src/css/icofont.min.css">
<link rel="stylesheet" href="./src/OwlCarousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="./src/OwlCarousel/assets/owl.theme.default.css">
<link rel="stylesheet" href="./src/css/main.css">
</head>
<body>
<div class="blogWrapper">
<header class="nav">
<input type="checkbox" id="checkbox" class="close">
<div class="logo">
<img src="./src/img/logo.png" alt="">
<span class="Hamburger">
<label for="checkbox">
<i class="icofont-navigation-menu"></i>
</label>
</span>
</div>
<nav class="navbar">
<div class="ul-mobile">
<span class="close">
<label for="checkbox">
<i class="icofont-close-line"></i>
</label>
</span>
<ul class="navlinks-mobile">
<li>
<a href="./index.html" class="nav-mobile">HOME</a>
</li>
<li>
<a href="./about.html" class="nav-mobile">ABOUT</a>
</li>
<li>
<a href="./blog.html" class="nav-mobile">BLOG</a>
</li>
<li>
<a href="./faq.html" class="nav-mobile">FAQ</a>
</li>
<li>
<a href="./contact.html" class="nav-mobile">CONTACT</a>
</li>
</ul>
<div class="social-links">
<a href="https://www.facebook.com/emmanuel.luis.102/" target="_blank"><i class="icofont-facebook"></i></a>
<a href="https://twitter.com/DevemmyM?t=bgKgurjRnUcRF6aKQhFuKw&s=09" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://wa.me/2348075771245" target="_blank"><i class="icofont-whatsapp"></i></a>
</div>
</div>
</nav>
</header>
<section id="aboutHead">
<h2>Blog List</h2>
<div class="homeAbout">
<div>
<a href="./index.html"><h4 class="home">Blog</h4></a>
<span>||</span>
<h4 class="about">Blog List</h4>
</div>
</div>
</section>
<section id="noPost">
<div class="noPostWrapper">
<div class="text">
<p>No Available Post</p>
</div>
<div class="numbers">
<span><i class="icofont-double-left"></i></span>
<span class="no"><a href="#">1</a></span>
<span class="no active"><a href="#">2</a></span>
<span class="no"><a href="#">3</a></span>
<span><i class="icofont-double-right"></i></span>
</div>
</div>
</section>
<footer>
<div class="contactInfo">
<div class="icon">
<i class="icofont-phone"></i>
</div>
<div class="info">
<p>+234 812 551 0572</p>
</div>
</div>
<div class="contactInfo">
<div class="icon">
<i class="icofont-envelope-open"></i>
</div>
<div class="info">
<p>info@devemmy.tech</p>
</div>
</div>
<div class="social-links">
<a href="https://www.facebook.com/emmanuel.luis.102/" target="_blank"><i class="icofont-facebook"></i></a>
<a href="https://twitter.com/DevemmyM?t=bgKgurjRnUcRF6aKQhFuKw&s=09" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://wa.me/2348075771245" target="_blank"><i class="icofont-whatsapp"></i></a>
</div>
<div class="footerImg">
<img src="./src/img/logo.png" alt="">
<h3><spans>© 2022</span> DEVEMMY</h3>
</div>
</footer>
</div>
<script src="./src/js/jquery-3.6.0.min.js"></script>
<script src="./src/js/scrollreveal.js"></script>
<script src="./src/js/vanilla-tilt.js"></script>
<script src="./src/OwlCarousel/owl.carousel.min.js"></script>
<script src="./src/js/index.js"></script>
</body>
</html>