-
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
0 parents
commit d58de2f
Showing
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
google.com, pub-1661901136761552, DIRECT, f08c47fec0942fa0 |
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,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>© 2024 GoRelax. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |
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,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; | ||
} |