-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35737aa
commit 04fbd94
Showing
2 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Landing Page</title> | ||
<style> | ||
/* General Styles */ | ||
body { | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
background-color: rgb(225, 206, 227); | ||
color: #333; | ||
text-align: center; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
flex-direction: column; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5rem; | ||
margin-bottom: 20px; | ||
} | ||
|
||
p { | ||
font-size: 1rem; | ||
margin-bottom: 30px; | ||
} | ||
|
||
/* Image Styling */ | ||
.image-container img { | ||
width: 100%; | ||
max-width: 600px; | ||
height: auto; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
/* Link Styles */ | ||
.links { | ||
display: flex; | ||
gap: 20px; | ||
justify-content: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.links a { | ||
text-decoration: none; | ||
color: #5a4b71; | ||
font-size: 1.1rem; | ||
padding: 10px 20px; | ||
border: 2px solid #5a4b71; | ||
border-radius: 5px; | ||
transition: background-color 0.3s ease, color 0.3s ease; | ||
} | ||
|
||
.links a:hover { | ||
background-color: #5a4b71; | ||
color: white; | ||
} | ||
|
||
/* Responsive Styles */ | ||
@media (max-width: 768px) { | ||
h1 { | ||
font-size: 2rem; | ||
} | ||
|
||
p { | ||
font-size: 0.9rem; | ||
} | ||
|
||
.image-container img { | ||
width: 90%; | ||
max-width: none; | ||
} | ||
|
||
.links { | ||
flex-direction: column; | ||
gap: 15px; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<h1>Welcome to Our Landing Page</h1> | ||
<p>Explore our content and stay connected.</p> | ||
|
||
<div class="image-container"> | ||
<!-- Example Image (Replace with your image URL) --> | ||
<img src="https://via.placeholder.com/600x300" alt="Example Image"> | ||
</div> | ||
|
||
<div class="links"> | ||
<a href="#link1">Link 1</a> | ||
<a href="#link2">Link 2</a> | ||
</div> | ||
|
||
</body> | ||
</html> |