guestbook/index.html

38 lines
686 B
HTML

<!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 href="./guestbook/index.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>