-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
45 lines (39 loc) · 1.46 KB
/
Copy pathposts.html
File metadata and controls
45 lines (39 loc) · 1.46 KB
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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebDevBlog</title>
<link rel="stylesheet" href="assets/style.css"/>
</head>
<body>
<div id="Home" style="font-size: large;">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="posts.html">Blog Posts</a></li>
</ul>
</nav>
<hr>
<h1 style="text-align: center;">Blog Posts of WebDevBlog</h1>
<hr>
<div class="content-box" style="width: 75%; margin-left: auto; margin-right: auto;">
<h2><u>Blog Posts</u></h2>
<div class="blog-posts-box" style="margin-top: 2em;">
<ul>
<li><a href="posts/day05.html">Day 05: Rewriting Svelte and Image Problem</a></li>
<br>
<li><a href="posts/day04.html">Day 04: Svelte Routing fixed and Reading</a></li>
<br>
<li><a href="posts/day03.html">Day 03: Trying Svelte and Routing</a></li>
<br>
<li><a href="posts/day02.html">Day 02: Styling my Blog</a></li>
<br>
<li><a href="posts/day01.html">Day 01: The Starting of Web Dev</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>