-
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.
Refactor project structure and import statements
- Loading branch information
1 parent
c6de23e
commit e8d5ca6
Showing
1 changed file
with
111 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,111 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>PyCalc - Simplifying Calculations</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
} | ||
header { | ||
background-color: #4CAF50; | ||
color: white; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
} | ||
nav { | ||
margin: 20px; | ||
text-align: center; | ||
} | ||
nav a { | ||
margin: 0 15px; | ||
text-decoration: none; | ||
color: #333; | ||
font-size: 18px; | ||
} | ||
.section { | ||
padding: 40px; | ||
text-align: center; | ||
} | ||
.section h2 { | ||
margin-bottom: 20px; | ||
} | ||
.features { | ||
display: flex; | ||
justify-content: space-around; | ||
} | ||
.feature { | ||
width: 30%; | ||
} | ||
.feature img { | ||
width: 100%; | ||
height: 200px; | ||
background-color: #ddd; | ||
} | ||
footer { | ||
background-color: #333; | ||
color: white; | ||
text-align: center; | ||
padding: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>PyCalc</h1> | ||
<p>Simplifying Calculations for Everyone</p> | ||
<nav> | ||
<a href="#features">Features</a> | ||
<a href="#about">About</a> | ||
</nav> | ||
<button onclick="location.href='###DeployedProjectLink###';">Try PyCalc Now</button> | ||
</header> | ||
|
||
<section class="section" id="features"> | ||
<h2>Key Features</h2> | ||
<div class="features"> | ||
<div class="feature"> | ||
<h3>Feature 1</h3> | ||
<img src="####" alt="Feature 1 Image"> | ||
<p>This feature allows you to perform complex calculations easily.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Feature 2</h3> | ||
<img src="####" alt="Feature 2 Image"> | ||
<p>This feature supports multiple mathematical operations and formulas.</p> | ||
</div> | ||
<div class="feature"> | ||
<h3>Feature 3</h3> | ||
<img src="####" alt="Feature 3 Image"> | ||
<p>Provides detailed step-by-step results for educational purposes.</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section class="section" id="about"> | ||
<h2>About PyCalc</h2> | ||
<p>PyCalc was inspired by the need to simplify and automate complex calculations for users who want a simple, easy-to-use calculator.</p> | ||
<p>We started development in [Month, Year] and have worked tirelessly to bring this project to life as part of our Portfolio Project for Holberton School.</p> | ||
<p>Meet the team:</p> | ||
<ul> | ||
<li><a href="####">LinkedIn</a></li> | ||
<li><a href="####">GitHub</a></li> | ||
<li><a href="####">Twitter</a></li> | ||
</ul> | ||
<p>Check out the GitHub repository: <a href="####">PyCalc Repository</a></p> | ||
</section> | ||
|
||
<footer> | ||
<p>© 2024 PyCalc - All Rights Reserved</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |