first commit

This commit is contained in:
Tristan Smith 2024-09-22 18:12:39 -04:00
commit 6fb6daf8ed
2 changed files with 84 additions and 0 deletions

49
index.html Normal file
View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProfaneC</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>ProfaneC</h1>
<p>The Unholy Companion to HolyC</p>
</header>
<main>
<section class="intro">
<h2>Welcome to ProfaneC</h2>
<p>Programming so blasphemous, it can only be handled by true heretics.</p>
<a href="https://github.com/bigsketti/ProfaneC" class="btn">Get Started</a>
</section>
<section class="about">
<h2>What is ProfaneC?</h2>
<p>
ProfaneC is a programming language, born from the unholy depths of the terminal.
Inspired by Terry Davis' HolyC, it flips the script on divine programming, bringing blasphemy
to your fingertips.
</p>
</section>
<section class="download">
<h2>Download</h2>
<p>
Ready to embrace the chaos? Head over to our <a href="https://github.com/bigsketti/ProfaneC">Git repository</a>
and unleash ProfaneC on your machine.
</p>
</section>
<section class="contribute">
<h2>Contribute</h2>
<p>ProfaneC needs more heretics! Join us in our quest for programming infamy.</p>
</section>
</main>
<footer>
<p>&copy; 2024 ProfaneC. All rights reserved. We don't pray here, we code.</p>
</footer>
</body>
</html>

35
styles.css Normal file
View file

@ -0,0 +1,35 @@
body {
font-family: 'Courier New', monospace;
background-color: #111;
color: #eee;
margin: 0;
padding: 0;
text-align: center;
}
header {
padding: 20px;
background-color: #222;
}
h1 {
font-size: 3rem;
margin: 0;
}
p {
font-size: 1.2rem;
}
main {
padding: 20px;
}
.intro .btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #ff4500;
color: white;
text-decoration: none;
border-radius: