-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
77 lines (72 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Scott Gordon - Blog</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700|Montserrat:400,500,700,800"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/9c1549859f.js"
crossorigin="anonymous"
></script>
<script src="/scripts/greeting.js"></script>
</head>
<body onload="greetVisitor()">
<div class="header">
<h1>Scott Gordon - Blog</h1>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="skills.html">Skills</a>
<a href="certificates.html">Certificates</a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="about.html">About Me</a>
</div>
<!-- Main -->
<!-- Blog Page -->
<h2 class="main">Blog Showcase</h2>
<section class="blog-page">
<div class="blog-container">
<div id="blog" class="blog-post-card"></div>
</div>
</section>
<script src="./scripts/blog.js" type="text/javascript"></script>
</div>
<!-- Footer -->
<div class="footer">
<h2>Connect With Me</h2>
<a
href="https://www.linkedin.com/in/sagordon-dev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-linkedin fa-2x"></i
></a>
<a
href="https://github.com/sagordon-dev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-github-square fa-2x"></i
></a>
<a
href="https://dev.to/sagordondev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-dev fa-2x"></i
></a>
<a
href="mailto:[email protected]"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-envelope-square fa-2x"></i
></a>
<br /><br />
<p>© 2024 https://sagordon-dev.github.io/</p>
</div>
</body>
</html>