-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketing_agency.html
161 lines (143 loc) · 3.81 KB
/
marketing_agency.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Marketing Pro</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Arial", sans-serif;
background-color: #f4f4f4;
color: #333;
}
nav {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
font-size: 1.5em;
}
header {
background-color: #8f00ff;
color: white;
padding: 50px;
text-align: center;
}
header h1 {
font-size: 2.5em;
}
header p {
margin-top: 10px;
font-size: 1.2em;
}
.container {
padding: 30px;
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.services {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-bottom: 50px;
}
.service-item {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 30%;
margin-bottom: 20px;
padding: 20px;
transition: transform 0.3s ease;
}
.service-item:hover {
transform: scale(1.05);
}
.service-item img {
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 20px;
}
.service-item h3 {
margin-bottom: 10px;
color: #8f00ff;
}
.contact {
background-color: #333;
color: white;
padding: 50px;
text-align: center;
}
.contact h2 {
margin-bottom: 20px;
font-size: 2em;
}
footer {
text-align: center;
padding: 20px;
background-color: #8f00ff;
color: white;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav>Marketing Pro</nav>
<!-- Header Section -->
<header>
<h1>Digital Marketing Solutions</h1>
<p>
We help your business grow with effective online marketing strategies.
</p>
</header>
<!-- Services Section -->
<section class="container">
<h2>Our Services</h2>
<div class="services">
<!-- Service 1 -->
<div class="service-item">
<img src="https://via.placeholder.com/100" alt="SEO" />
<h3>SEO Optimization</h3>
<p>
Boost your website's visibility with our cutting-edge SEO
strategies.
</p>
</div>
<!-- Service 2 -->
<div class="service-item">
<img src="https://via.placeholder.com/100" alt="Content" />
<h3>Content Marketing</h3>
<p>
Engage your audience with high-quality content that drives
conversions.
</p>
</div>
<!-- Service 3 -->
<div class="service-item">
<img src="https://via.placeholder.com/100" alt="Social Media" />
<h3>Social Media Management</h3>
<p>Build your brand's presence across social media platforms.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact">
<h2>Get in Touch</h2>
<p>
Contact us today to learn how we can help your business thrive online.
</p>
<p>Email: info@marketingpro.com</p>
<p>Phone: +123 456 7890</p>
</section>
<!-- Footer -->
<footer>© 2024 Marketing Pro - All Rights Reserved</footer>
</body>
</html>