-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.html
More file actions
89 lines (86 loc) · 3.76 KB
/
Copy pathFAQ.html
File metadata and controls
89 lines (86 loc) · 3.76 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
<!-- Extra Feature -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digitrove FAQ</title>
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="./CSS/faq.css">
</head>
<header>
<nav>
<div class="nav-logo">
<a href="./index.html">
<img src="./images/logo.png" alt="Digitrove Marketing Logo"></a>
<ul class="navbar">
<li><a href="./index.html">Home</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="./Contact_Us.html">Contact Us</a></li>
<li><a href="./Subscribe.html">Subscribe</a></li>
<li><a href="./FAQ.html">FAQ</a></li>
<li><a href="./Login.html">Login</a></li>
</ul>
<div class="search-bar"> <!-- Added search bar -->
<input type="text" id="search" placeholder="Search...">
<button type="submit">Search 🔍</button>
</div>
</nav>
</header>
<body>
<section id="faq">
<div class="container">
<h2>Frequently Asked Questions (FAQ)</h2>
<div class="faq-item">
<h3>What services do you offer?</h3>
<p>We offer a range of services including SEO Optimization, Social Media Marketing, PPC Ads, Content Marketing, and Email Marketing.</p>
</div>
<div class="faq-item">
<h3>How do I get started with Digitrove Marketing?</h3>
<p>To get started, simply contact us via our Contact page or sign up for our newsletter for more information.</p>
</div>
<div class="faq-item">
<h3>Do you offer customized marketing plans?</h3>
<p>Yes, all our marketing strategies are tailored to meet the unique needs of each business we work with.</p>
</div>
<div class="faq-item">
<h3>How long does it take to see results?</h3>
<p>Results vary depending on the service. Typically, SEO can take 3-6 months to show significant improvements, while PPC campaigns can deliver faster results.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="footer-content">
<div class="footer-left">
<a href="./index.html">
<img src="./images/logo.png" alt="Digitrove Marketing Logo" class="nav-logo"></a>
<p>Your trusted partner in digital growth. We help businesses achieve their marketing goals with tailored, data-driven strategies.</p>
</div>
<div class="footer-middle">
<h4>Quick Links</h4>
<ul>
<li><a href="./services.html">Services</a></li>
<li><a href="./index.html#testimonials">Testimonials</a></li>
<li><a href="./Contact_Us.html">Contact</a></li>
</ul>
</div>
<div class="footer-right">
<h4>Contact Us</h4>
<p>Email: <a href="mailto:info@digitrove.com">info@digitrove.com</a></p>
<p>Phone: (123) 456-7890</p>
<div class="social-icons">
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Digitrove Marketing. All Rights Reserved.</p>
</div>
</div>
</footer>
</body>
</html>