-
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
1 changed file
with
107 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,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BunOS - The Future of Operating Systems</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; | ||
} | ||
nav { | ||
margin-top: 10px; | ||
} | ||
nav a { | ||
color: #fff; | ||
text-decoration: none; | ||
padding: 10px 20px; | ||
font-size: 1.2em; | ||
} | ||
nav a:hover { | ||
background: #555; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
.main-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 20px 0; | ||
} | ||
.main-content h2 { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
} | ||
.main-content p { | ||
font-size: 1.2em; | ||
line-height: 1.6; | ||
max-width: 800px; | ||
text-align: center; | ||
} | ||
.cta { | ||
margin-top: 20px; | ||
} | ||
.cta a { | ||
display: inline-block; | ||
text-decoration: none; | ||
color: #fff; | ||
background: #007bff; | ||
padding: 15px 30px; | ||
font-size: 1.2em; | ||
border-radius: 5px; | ||
} | ||
.cta a:hover { | ||
background: #0056b3; | ||
} | ||
footer { | ||
background: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>BunOS</h1> | ||
<nav> | ||
<a href="features.html">Features</a> | ||
<a href="downloads.html">Download</a> | ||
<a href="contactus.html">Contact</a> | ||
</nav> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="main-content"> | ||
<h2>Welcome to BunOS</h2> | ||
<p>BunOS is derived from Ubuntu Jammy, designed to provide a seamless and efficient user experience. With a sleek interface, BunOS is built to meet the demands of modern computing.</p> | ||
<div class="cta"> | ||
<a href="downloads.html">Get Started</a> | ||
</div> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
<p>© 2024 KirbyJeff. All rights reserved. | <a href="contactus.html" style="color: #fff;">Contact Us</a></p> | ||
</footer> | ||
</body> | ||
</html> |