-
Notifications
You must be signed in to change notification settings - Fork 0
/
indext.html
110 lines (98 loc) · 4.11 KB
/
indext.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marketing Agency</title>
</head>
<body>
<nav>
<div class="left">
<a href="index.html" class="logo">
<img src="logo.png" alt="Logo"></a>
</div>
<div class="right">
<a href="#header">
<i class="fas fa-house"></i>
<span>Home</span>
</a>
</div>
<div class="right">
<a href="#projects">
<i class="fas fa-list-check"></i>
<span>Projects</span>
</a>
</div>
<div class="right">
<a href="#contact">
<i class="fas fa-envelope"></i>
<span>Contact Us</span>
</a>
</div>
</nav>
<header id="header">
<p>At BrightSpark, we are a full-service marketing agency committed to helping businesses thrive in today’s competitive landscape. With expertise in digital strategy, creative branding, and data-driven campaigns, we deliver customized marketing solutions tailored to your specific goals. Our team of passionate professionals blends creativity with cutting-edge technology to elevate your brand, attract your target audience, and drive measurable results. From social media marketing to SEO, PPC, and beyond, we’ve got the tools and expertise to amplify your success. Let’s work together to make your brand stand out and grow your business.</p>
</header>
<section class="features" id="projects">
<div class="feature startups">
<p>We provide marketing strategies and solutions for launching products and services effectively.</p>
</div>
<div class="feature business">
<p>We offer services designed to help businesses grow and strengthen their online presence.</p>
</div>
<div class="feature freelancers">
<p>We help to build the brand and reach a broader audience through targeted marketing.</p>
</div>
</section>
<section id="contact" class="contact-section">
<div class="content">
<div class="text">
<h2>Contact</h2>
<h3>Let’s Elevate Your Brand Together!</h3>
<p>At BrightSpark, we’re dedicated to helping your business shine in the digital landscape. Whether you have questions about our marketing services, want to discuss a project, or need expert advice, we’re here to assist you.</p>
<h4>Get Started:</h4>
<p>Fill out the form, and our team will get back to you shortly. Let’s take the first step toward transforming your marketing strategy!</p>
</div>
<div class="contact-form">
<form>
<label for="name">Name</label>
<input type="text" id="name" required>
<label for="email">Email</label>
<input type="email" id="email" required>
<label for="message">Message</label>
<textarea id="message" rows="4" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
<footer>
<nav>
<div class="left">
<p>Copyright © 2024 by BrightSpark. All Rights Reserved.</p>
</div>
<nav>
<div class="right">
<a href="linkedin">
<i class="fa-brands fa-linkedin"></i>
<span>Linkedin</span>
</a>
</div>
<div class="right">
<a href="facebook">
<i class="fa-brands fa-facebook"></i>
<span>Facebook</span>
</a>
</div>
<div class="right">
<a href="instagram">
<i class="fa-brands fa-instagram"></i>
<span>Instagram</span>
</a>
</div>
</nav>
</footer>
</body>
</html>