-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
126 lines (116 loc) · 6.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YesAbba Writes - Blog</title>
<link rel="stylesheet" href="style.css"> <!-- Link to your existing CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/png" href="img/logo.jpg">
</head>
<body>
<header>
<img src="img/logo.jpg" alt="YesAbbawrites" class="logo">
<h1>YesAbba Writes</h1>
<p>Where creativity meets purpose...</p>
<nav>
<a href="index.html">Home</a>
<a href="#">Services</a>
<a href="#">About Us</a>
<a href="#testimonials">Testimonials</a>
<a href="blog.html">Blog</a> <!-- Add this line -->
<a href="contact.html">Contact</a>
</nav>
</header>
<!-- Blog Section -->
<section id="blog" class="blog">
<h2>Blog</h2>
<!-- Blog Post 2 -->
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<!-- Blog Post 3 -->
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
<div class="blog-post">
<h3>10 Tips for Effective Content Writing</h3>
<p class="meta">Published on January 28, 2025 by Admin</p>
<p>Learn how to create engaging and impactful content that resonates with your audience...</p>
<a href="post1.html" class="read-more">Read More</a>
</div>
</div>
</section>
<footer id="contact">
<div class="footer-content">
<!-- Left Column: Contact Info -->
<div class="footer-left">
<h3>Contact Us</h3>
<p><a href="tel:08127945747"><i class="fas fa-phone"></i> 08127945747</a></p>
<p><a href="tel:07031179735"><i class="fas fa-phone"></i> 07031179735</a></p>
<p><a href="mailto:info@yesabbawrites.online"><i class="fas fa-envelope"></i> info@yesabbawrites.online</a></p>
<p><a href="https://ng.linkedin.com/company/yesabba-writes?trk=public_post_feed-actor-name"><i class="fab fa-linkedin"></i> YesAbba Writes</a></p>
<p><a href="https://twitter.com/YesAbbawrites" target="_blank"><i class="fab fa-twitter"></i> @YesAbbawrites</a></p>
</div>
<!-- Right Column: Navigation Links and Logo -->
<div class="footer-right">
<img src="img/logo.jpg" alt="YesAbba Writes Logo" class="footer-logo">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="#">Services</a>
<a href="#">About Us</a>
<a href="#testimonials">Testimonials</a>
<a href="blog.html">Blog</a>
</div>
</div>
</div>
<!-- Copyright Notice -->
<div class="copyright">
<p>© 2025 YesAbba Writes. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>