-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
36 lines (34 loc) · 975 Bytes
/
blog.html
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body style="background-color: #1f3e74">
<nav class="navbar">
<h1 class="logo">Blog</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</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>
</ul>
</nav>
<main>
<title class="blog-title"></title>
<div class="blog-container">
<ul class="list-of-blog-posts">
</ul>
</div>
<div class="comment-section">
<input type="text" class="comment-input" placeholder="Drop a Comment!">
<button class="comment-button">Post Comment</button>
<ul class="comment-list">
</ul>
</div>
</main>
<script src="scripts/blog.ts"></script>
<script src="scripts/blog.ts"></script>
</body>
</html>