-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-landing.html
More file actions
124 lines (124 loc) · 3.31 KB
/
sample-landing.html
File metadata and controls
124 lines (124 loc) · 3.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sales Marketing Landing Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header {
background: #4CAF50;
color: white;
padding: 20px 0;
text-align: center;
}
.header .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.header h1 {
margin: 0;
font-size: 2.5em;
}
.header p {
margin: 10px 0 20px;
font-size: 1.2em;
}
.header .btn {
background: white;
color: #4CAF50;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
.services {
padding: 50px 0;
background: #f4f4f4;
}
.services .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.services h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2em;
}
.service-items {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.service-item {
background: white;
padding: 20px;
margin: 10px;
flex: 1 1 calc(33.333% - 20px);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.service-item h3 {
margin-top: 0;
}
.footer {
background: #333;
color: white;
text-align: center;
padding: 20px 0;
}
.footer .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
@media (max-width: 768px) {
.service-items {
flex-direction: column;
}
.service-item {
flex: 1 1 100%;
}
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<h1>Welcome to Our Sales Marketing Site</h1>
<p>Your success is our priority</p>
<a href="#services" class="btn">Learn More</a>
</div>
</header>
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="service-items">
<div class="service-item">
<h3>Service 1</h3>
<p>Description of service 1.</p>
</div>
<div class="service-item">
<h3>Service 2</h3>
<p>Description of service 2.</p>
</div>
<div class="service-item">
<h3>Service 3</h3>
<p>Description of service 3.</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2023 Sales Marketing. All rights reserved.</p>
</div>
</footer>
</body>
</html>