-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
80 lines (80 loc) · 3.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link href="./style.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/1f7b826b48.js" crossorigin="anonymous"></script>
<script src="./hamburger.js"></script>
</head>
<body>
<div class="topnav">
<span id="navbarleft">
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<span id="navLinks">
<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>
<span id="navbarright">
<a href="contact.html" id = "contact">Contact</a>
</span>
</div>
<section class = "content">
<div class = "heading">
Blog
</div>
<div class = "main">
<p>
<a href = "https://medium.com/@morgan.batterham/how-to-register-a-domain-with-porkbun-and-use-it-to-host-your-github-page-df947d91e298" target = "_blank">
How to Register a domain with PorkBun and link it to your GitHub page
<img src = "images/blog2.png">
</a>
</p>
<br />
<p>
<a href = "https://medium.com/@morgan.batterham/how-to-change-your-bash-default-directory-in-vs-code-3025b43cd48b" target = "_blank">
How to change your bash default directory in VS code
<img src = "images/blog1.png">
</a>
</p>
<br />
<p>
<a href = "blog3.html">
Blog Post 3
<img src = "images/blog3.png">
</a>
</p>
<br />
<p>
<a href = "blog4.html">
Blog Post 4
<img src = "images/blog4.png">
</a>
</p>
<br />
<p>
<a href = "blog5.html">
Blog Post 5
<img src = "images/blog5.png">
</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>