-
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
Showing
3 changed files
with
322 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,133 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BunOS - Contact Us</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background: #f4f4f4; | ||
color: #333; | ||
} | ||
header { | ||
background: #333; | ||
color: #fff; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
font-size: 2.5em; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
.main-content { | ||
padding: 20px 0; | ||
} | ||
.main-content h2 { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
text-align: center; | ||
} | ||
.contact-info { | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
margin: 20px 0; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.contact-info h3 { | ||
margin-top: 0; | ||
font-size: 1.5em; | ||
} | ||
.contact-info p { | ||
font-size: 1.1em; | ||
line-height: 1.6; | ||
} | ||
.contact-form { | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.contact-form label { | ||
display: block; | ||
margin-bottom: 5px; | ||
font-weight: bold; | ||
} | ||
.contact-form input, .contact-form textarea { | ||
width: 100%; | ||
padding: 10px; | ||
margin-bottom: 10px; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
} | ||
.contact-form button { | ||
background: #007bff; | ||
color: #fff; | ||
border: none; | ||
padding: 15px 20px; | ||
font-size: 1.2em; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
.contact-form button:hover { | ||
background: #0056b3; | ||
} | ||
footer { | ||
background: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>BunOS</h1> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="main-content"> | ||
<h2>Contact Us</h2> | ||
|
||
<div class="contact-info"> | ||
<h3>Get in Touch</h3> | ||
<p>If you have any questions, feedback, or need support, feel free to reach out to us using the contact details below:</p> | ||
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p><strong>Reddit:</strong> <a href="https://www.reddit.com/u/KirbyJeef" target="_blank">u/KirbyJeef</a></p> | ||
</div> | ||
|
||
<div class="contact-form"> | ||
<h3>Contact Form</h3> | ||
<form action="mailto:[email protected]" method="post" enctype="text/plain"> | ||
<label for="name">Name:</label> | ||
<input type="text" id="name" name="name" required> | ||
|
||
<label for="email">Email:</label> | ||
<input type="email" id="email" name="email" required> | ||
|
||
<label for="message">Message:</label> | ||
<textarea id="message" name="message" rows="5" required></textarea> | ||
|
||
<button type="submit">Send Message</button> | ||
</form> | ||
</div> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
<p>© 2024 KirbyJeff. All rights reserved. | <a href="#contact" style="color: #fff;">Contact Us</a></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,94 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BunOS - Downloads</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background: #f4f4f4; | ||
color: #333; | ||
} | ||
header { | ||
background: #333; | ||
color: #fff; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
font-size: 2.5em; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
.main-content { | ||
padding: 20px 0; | ||
} | ||
.main-content h2 { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
text-align: center; | ||
} | ||
.download-item { | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
margin: 20px 0; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.download-item h3 { | ||
margin-top: 0; | ||
font-size: 1.5em; | ||
} | ||
.download-item p { | ||
font-size: 1.1em; | ||
line-height: 1.6; | ||
} | ||
.download-item a { | ||
display: inline-block; | ||
text-decoration: none; | ||
color: #fff; | ||
background: #007bff; | ||
padding: 10px 20px; | ||
font-size: 1.1em; | ||
border-radius: 5px; | ||
margin-top: 10px; | ||
} | ||
.download-item a:hover { | ||
background: #0056b3; | ||
} | ||
footer { | ||
background: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>BunOS Downloads</h1> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="main-content"> | ||
<h2>Download BunOS</h2> | ||
<div class="download-item"> | ||
<h3>BunOS Standard/Lite Edition</h3> | ||
<p>The Two-In-One Edition of BunOS provides a trial of all features and performance suitable for most users. Includes a trial installation and an installer that allows you to choose between BunOS Lite and BunOS Standard.</p> | ||
<a href="https://github.com/KirbyJeff/BunOS/releases" download>Download Now</a> | ||
</div> | ||
<footer> | ||
<p>© 2024 KirbyJeff. All rights reserved. | <a href="contactus.html" style="color: #fff;">Contact Us</a></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,95 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BunOS - Features</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background: #f4f4f4; | ||
color: #333; | ||
} | ||
header { | ||
background: #333; | ||
color: #fff; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
font-size: 2.5em; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
.main-content { | ||
padding: 20px 0; | ||
} | ||
.main-content h2 { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
text-align: center; | ||
} | ||
.feature { | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
margin: 20px 0; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.feature h3 { | ||
margin-top: 0; | ||
font-size: 1.8em; | ||
color: #007bff; | ||
} | ||
.feature p { | ||
font-size: 1.2em; | ||
line-height: 1.6; | ||
} | ||
footer { | ||
background: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>BunOS</h1> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="main-content"> | ||
<h2>Features of BunOS</h2> | ||
|
||
<div class="feature"> | ||
<h3>Customizability</h3> | ||
<p>BunOS offers extensive customization options, allowing users to tailor their desktop environment to their personal preferences. From theme changes to desktop widgets and icon packs, BunOS ensures you can create an experience that is uniquely yours.</p> | ||
</div> | ||
|
||
<div class="feature"> | ||
<h3>User Friendliness</h3> | ||
<p>Designed with user experience in mind, BunOS provides a clean and intuitive interface that makes navigation and task management easy for both new and experienced users. Enjoy a streamlined setup process and an accessible user guide to get you up and running in no time.</p> | ||
</div> | ||
|
||
<div class="feature"> | ||
<h3>Compatibility with Ubuntu Jammy Packages</h3> | ||
<p>BunOS is fully compatible with all packages from Ubuntu Jammy, ensuring you have access to a vast repository of software and tools. Whether you need productivity applications, development tools, or entertainment options, BunOS seamlessly integrates with the Ubuntu ecosystem.</p> | ||
</div> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
<p>© 2024 KirbyJeff. All rights reserved. | <a href="#contact" style="color: #fff;">Contact Us</a></p> | ||
</footer> | ||
</body> | ||
</html> |