-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLanding page.html
84 lines (73 loc) · 2.02 KB
/
Landing page.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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.main-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 0;
}
.main-content img {
max-width: 50%;
height: auto;
}
.main-content .text {
flex: 1;
padding: 0 40px;
}
.cta-button {
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<div class="header">
<h1>Welcome to Our Website</h1>
<p>Your one-stop destination for amazing experiences.</p>
</div>
<div class="container">
<div class="main-content">
<div class="text">
<h2>Explore the World with Us</h2>
<p>Discover exciting destinations, breathtaking landscapes, and rich cultures. Book your next adventure today!</p>
<button class="cta-button">Book Now</button>
</div>
<img src="https://via.placeholder.com/800x600" alt="Travel Image">
</div>
</div>
<div class="footer">
<p>© 2023 OurWebsite.com. All rights reserved.</p>
</div>
</body>
</html>