Inital Site

This commit is contained in:
Evan G. 2024-04-19 22:13:16 -05:00
parent ade58006f7
commit 0032f8b892
Signed by: fbievan
GPG key ID: 55FAB8CB6842F080
4 changed files with 365 additions and 0 deletions

37
index.html Normal file
View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="readable.css">
<link rel="stylesheet" href="homepage.css">
</head>
<nav>
<a href="./index.html">Home</a>
<a href="./posts.html">Posts</a>
<a ref="./guestbook.html">Guestbook</a>
</nav>
<body>
<h1>Fbi's Epic Blog</h1>
<div class="articles">
<section>
<a href="./post1.html">
<h3>post 1</h2>
</a>
This is my blog..
</section>
<section>
<a href="./post2.html">
<h3>post 2 </h2>
</a>
This is cool
</section>
<section>
<a href="./post3.html">
<h3>post 3 </h2>
</a>
This is amazing
</section>
</div>
</body>
</html>