Started playing around with HTML and CSS

This commit is contained in:
TheNightglow
2021-08-09 23:04:45 +02:00
parent 57ca11baf8
commit 8fce073b86
5 changed files with 225 additions and 0 deletions

58
SubFiles/aboutUs.html Normal file
View File

@@ -0,0 +1,58 @@
<!-- See Tutorial https://www.youtube.com/watch?v=NXG0ETguPsg -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Apophis Coding - About Us</title>
<link rel="shortcut icon" href="../Images/icon.png">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header class="page-head">
<div>
<img src="../Images/icon.png" alt="Icon of Apophis Coding">
<h1>Apophis Coding - About Us</h1>
</div>
</header>
<nav>
<ul class="navigation">
<li>
<a href="../index.html">
Home
</a>
</li>
<li>
<a href="../SubFiles/aboutUs.html">
Projects
</a>
</li>
<li>
<a href="../SubFiles/aboutUs.html">
About us
</a>
</li>
</ul>
</nav>
<main>
<div class="center-panel">
<p>This page is currently under construction.</p>
</div>
</main>
<footer class="footer">
<div>
<h3>Contact:</h3>
<ul>
<li>
support@apophis-coding.com
</li>
<li>
<a href="../https://discord.gg/zdJ7TVq5gz" target="_blank">
Discord
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>