-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4646 from Ayushmaanagarwal1211/main
Added About us page for aqua sort and aero combat game
- Loading branch information
Showing
5 changed files
with
194 additions
and
20 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,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>About Us - Aero Acrobat</title> | ||
<link rel="stylesheet" href="./assets/stylesheets/main.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<style> | ||
#about-page { | ||
display: block; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background-color: rgba(0, 0, 0, 0.8); | ||
color: white; | ||
text-align: center; | ||
padding: 20px; | ||
} | ||
|
||
#about { | ||
position: relative; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
padding: 20px; | ||
background-color: #333; | ||
margin: auto; | ||
width: 80%; | ||
max-width: 600px; | ||
border-radius: 10px; | ||
} | ||
|
||
#about-heading { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
font-family: 'Press Start 2P', cursive; | ||
} | ||
|
||
#about-text { | ||
font-size: 1.2em; | ||
font-family: 'Press Start 2P', cursive; | ||
} | ||
|
||
#back { | ||
margin-top: 20px; | ||
} | ||
|
||
#back a { | ||
color: #00f; | ||
text-decoration: none; | ||
font-size: 1.2em; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body background="./assets/images/body-bg.jpg"> | ||
<h1>About Us</h1> | ||
|
||
<div id="about-page"> | ||
<div id="about"> | ||
<div id="about-heading">ABOUT US</div> | ||
<div id="about-text"> | ||
Welcome to Aero Acrobat! Our game development team is dedicated to creating thrilling and entertaining experiences for players of all ages. Aero Acrobat is a fun and challenging game that combines skill and precision to test your acrobatic abilities in the sky. Our goal is to deliver high-quality gaming experiences that keep you engaged and coming back for more. Thank you for playing Aero Acrobat. If you have any questions or feedback, please reach out to us at [email protected]. | ||
</div> | ||
<div id="back"> | ||
<a href="index.html">BACK TO MAIN PAGE</a> | ||
</div> | ||
</div> | ||
</div> | ||
</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
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,20 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>About Us - Water Sort Puzzle</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div id="about-page"> | ||
<div id="about"> | ||
<div id="about-heading">ABOUT US</div> | ||
<div id="about-text"> | ||
Welcome to Water Sort Puzzle! We are passionate about creating fun and challenging puzzle games that entertain and engage players of all ages. Our team of developers is dedicated to providing high-quality gaming experiences. Water Sort Puzzle is our attempt to bring a simple yet addictive game to your fingertips. We hope you enjoy playing it as much as we enjoyed creating it. For any inquiries or feedback, feel free to contact us at [email protected]. | ||
</div> | ||
<div id="back"> | ||
<a href="index.html">BACK TO MAIN PAGE</a> | ||
</div> | ||
</div> | ||
</div> | ||
</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
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