Skip to content

Commit

Permalink
website
Browse files Browse the repository at this point in the history
  • Loading branch information
RicoMontulet committed Oct 26, 2024
0 parents commit d58de2f
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-ads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google.com, pub-1661901136761552, DIRECT, f08c47fec0942fa0
35 changes: 35 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GoRelax - Find Your Perfect Bench</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>GoRelax</h1>
<p>Find Your Perfect Bench</p>
</header>
<main>
<section id="features">
<h2>Features</h2>
<ul>
<li>Explore Nearby Benches</li>
<li>Save Favorite Spots</li>
<li>Search Functionality</li>
<li>Get Directions</li>
<li>User Profiles</li>
<li>Privacy Settings</li>
</ul>
</section>
<section id="download">
<h2>Download Now</h2>
<a href="#" class="app-store-button">Download on the App Store</a>
</section>
</main>
<footer>
<p>&copy; 2024 GoRelax. All rights reserved.</p>
</footer>
</body>
</html>
57 changes: 57 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem;
}

header h1 {
margin-bottom: 0;
}

main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}

section {
background-color: white;
padding: 2rem;
margin-bottom: 2rem;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
color: #4CAF50;
}

ul {
padding-left: 1.5rem;
}

.app-store-button {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}

footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: white;
}

0 comments on commit d58de2f

Please sign in to comment.