Skip to content

Commit

Permalink
moving for pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Berman committed Dec 4, 2024
1 parent 35737aa commit 04fbd94
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
File renamed without changes.
103 changes: 103 additions & 0 deletions website/index.html~
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>

0 comments on commit 04fbd94

Please sign in to comment.