-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (109 loc) · 4.89 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YesAbba Writes</title>
<link rel="stylesheet" href="style.css"> <!-- Link to external CSS file -->
<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>
</header>
<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>
<section id="services" class="services">
<h2>Our Services</h2>
<div class="service">
<h3>Content Writing</h3>
<p>Professional content creation tailored to your needs.</p>
</div>
<div class="service">
<h3>Copywriting</h3>
<p>Compelling copy that drives engagement and conversions.</p>
</div>
<div class="service">
<h3>Editing and Proofreading</h3>
<p>Polishing your content to perfection.</p>
</div>
<div class="service">
<h3>Digital Marketing</h3>
<p>Strategies to boost your online presence.</p>
</div>
<div class="service">
<h3>Academic Writing Consultancy</h3>
<p>Expert guidance for your academic projects.</p>
</div>
<div class="service">
<h3>Contracts and Agreement Drafting</h3>
<p>Precise and legally sound document drafting.</p>
</div>
</section>
<section id="about" class="about-us">
<h2>About Us</h2>
<p>YesAbba Writes is dedicated to providing high-quality writing and marketing services. Our team of experts is committed to helping you achieve your goals with creativity and precision.</p>
</section>
<section id="testimonials" class="testimonials">
<h2>Testimonials</h2>
<div class="carousel">
<div class="testimonial">
<p>"YesAbba Writes transformed our content strategy. Highly recommended!"</p>
<p>- Client A</p>
</div>
<div class="testimonial">
<p>"Their editing services are top-notch. Our documents have never looked better."</p>
<p>- Client B</p>
</div>
<div class="testimonial">
<p>"Professional and reliable. They delivered beyond our expectations."</p>
<p>- Client C</p>
</div>
</div>
<button class="carousel-button prev">❮</button> <!-- Left arrow -->
<button class="carousel-button next">❯</button> <!-- Right arrow -->
</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> <!-- Add this line -->
<a href="contact.html">Contact</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>