-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
52 lines (50 loc) · 2.46 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Page</title>
<link rel="stylesheet" href="blog.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:[email protected]&display=swap" rel="stylesheet">
</head>
<body class="bgcol__secondary">
<!-- Horizontal Header -->
<header class="nav nav--top bgcol__primary">
<a class="Text__nav Text__nav--top col__primary txt__tny" href="index.html">Home</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="about.html">About</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="skills.html">Projects</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="blog.html">Blog</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="contact.html">Contact</a>
</header>
<div class="container">
<!-- Main Content Area -->
<main>
<section id="blog-posts" class="blog-section">
<h2>Latest Posts</h2>
<div class="blog-list">
<!-- Blog Post Template -->
<div class="blog-item">
<img src="images/code/website.jpg" alt="Blog Post Image">
<div class="blog-info">
<h3>The Journey of This site...</h3>
<p>The story of how this site came to be...</p>
<a href="BlogPosts/websiteBP.html">Read More</a>
</div>
</div>
</div>
</section>
</main>
</div>
<footer class="nav nav--bottom bgcol__primary">
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="index.html">Home</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="about.html">About</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="skills.html">Projects</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="blog.html">Blog</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="contact.html">Contact</a>
</footer>
</body>
</html>