-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog4.html
46 lines (46 loc) · 2 KB
/
blog4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Post 4</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/1f7b826b48.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="topnav">
<span id = "navbarleft">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="blog.html" class = "active">Blog</a>
<a href="projects.html">Projects</a>
</span>
<span id = "navbarright">
<a href="contact.html" id = "contact">Contact</a>
</span>
</div>
<section class = "content">
<div class = "heading">
Blog Post 4
</div>
<div class = "main">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Delectus, nam iure. Soluta dicta veritatis rerum magnam enim architecto natus mollitia ullam vitae delectus, sint fuga nam accusantium nulla magni deleniti?
</p>
<p>
<a href = "blog.html">Go back to the Blog page</a>
</p>
</div>
</section>
<footer>
<span id = "footerleft">
© 2020 <a href = "https://linktr.ee/MorganBat" target = "_blank">Morgan Batterham</a> </span>
<span id = "footerright">
<a href = "https://www.linkedin.com/in/morgan-batterham-b4875448/" target = "_blank"><li class = "fab fa-linkedin" title = "LinkedIn"></li></a>
<a href = "https://github.com/MorganBat" target = "_blank"><li class="fab fa-github-square" title = "GitHub"></li></a>
<a href = "http://twitter.com/MorganB_CA" target = "_blank"><li class="fab fa-twitter-square" title = "Twitter"></li></a>
<a href = "https://medium.com/@morgan.batterham" target = "_blank"><li class="fab fa-medium" title = "Medium"></li></a>
</span>
</footer>
</body>
</html>