-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (25 loc) · 843 Bytes
/
blog.html
File metadata and controls
27 lines (25 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Turkish Delight</title>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Turkish Delight</a>
</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">Blog</h1>
<p>Make sure to check out my blog!</p>
</main>
<footer class="footer">© 2023 Turkish Delight | All Rights Reserved</footer>
</body>
</html>