-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prospect Pros</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<img src="logo.png" alt="Prospecting Pros Logo" class="logo">
<h1>Prospect Pros</h1>
<p>Your Gateway to Property Management Success</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<section id="services">
<div class="container">
<h2>Our Services</h2>
<p>We excel in connecting landlords and homeowners with premier property management companies through targeted meta advertising.</p>
<div class="service">
<h3>SEO</h3>
<p>Enhance your online visibility and attract more organic traffic with our expert SEO services.</p>
</div>
<div class="service">
<h3>PPC</h3>
<p>Drive immediate traffic and conversions with our targeted pay-per-click advertising campaigns.</p>
</div>
<div class="service">
<h3>Content Marketing</h3>
<p>Engage and educate your audience with high-quality, relevant content tailored to their needs.</p>
</div>
<div class="service">
<h3>Social Media Management</h3>
<p>Build and maintain a strong social media presence to connect with your audience and grow your brand.</p>
</div>
<div class="service">
<h3>Branding</h3>
<p>Create a strong, memorable brand identity that sets you apart from the competition.</p>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Us</h2>
<p>Prospect Pros is dedicated to connecting property owners with the best property management companies. Our mission is to deliver exceptional marketing solutions that drive growth and success for our clients. With a team of experienced professionals, we are passionate about leveraging our expertise to exceed client expectations and foster lasting relationships.</p>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>We'd love to hear from you! Whether you have a question, need more information about our services, or want to schedule a consultation, please get in touch using the form below.</p>
<form action="submit_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
<p>Or contact us directly at:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: <a href="tel:+447435907007">+44 7435 907007</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Prospect Pros. All rights reserved.</p>
</div>
</footer>
</body>
</html>