Initial Commit

This commit is contained in:
LeoTurlock 2024-04-25 07:36:33 +02:00
parent 33dbdfbcfa
commit 47b254e24c
2 changed files with 43 additions and 0 deletions

22
index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./stylesheet.css">
</head>
<body>
<div id="nav_bar">
<ul style="list-style-type: none;"></ul>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</ul>
</div>
<div id="view">
</div>
</body>
</html>

21
stylesheet.css Normal file
View File

@ -0,0 +1,21 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#nav_bar {
display: flex;
flex-direction:row;
align-items: center;
background-color: #333;
color: white;
padding: 10px;
margin: 0;
}
#nav_bar a {
color: white;
text-decoration: none;
padding: 10px;
}