-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
88 lines (75 loc) · 2.09 KB
/
landing.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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<style>
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Header Styles */
.header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.header h1 {
margin: 0;
}
/* Hero Styles */
.hero {
background-image: url('https://picsum.photos/2000/1000');
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}
.hero h2 {
font-size: 48px;
margin-bottom: 20px;
}
/* Call-to-Action Styles */
.cta {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.cta:hover {
background-color: #3e8e41;
}
/* Footer Styles */
.footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
clear: both;
}
</style>
</head>
<body>
<!-- Header Section -->
<div class="header">
<h1>Welcome to Our Landing Page</h1>
</div>
<!-- Hero Section -->
<div class="hero">
<h2>Discover the Power of Our Product</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.</p>
<button class="cta">Learn More</button>
</div>
<!-- Footer Section -->
<div class="footer">
<p>© 2023 Our Company. All rights reserved.</p>
</div>
</body>
</html>