-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_blog.html
More file actions
128 lines (107 loc) · 4.13 KB
/
my_blog.html
File metadata and controls
128 lines (107 loc) · 4.13 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Play&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/930fafc260.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/containers.css">
<link rel="stylesheet" href="./css/styles.css">
<title>Toby Beevers</title>
<link rel="icon" href="library/favicon-laptop-solid.svg" type="image/svg+xml">
</head>
<body>
<!-- Skip to content link -->
<a href="#main-content" class="skip-link" >Skip to main content</a>
<!-- NavBar Same Every Page -->
<div class="navbar" aria-label="Navigation">
<div class="container flex">
<nav aria-label="Main Navigation">
<ul>
<li><a href="./index.html" aria-current="page">Home</a></li>
<li><a href="./my_early_years.html">My Early Years</a></li>
<li><a href="./career_change.html">Career Change</a></li>
<li><a href="./personal_development.html">Personal Development</a></li>
<li><a href="./my_links.html">My Links</a></li>
<li><a href="./my_blog.html">My Blog Posts</a></li>
</ul>
</nav>
</div>
</div>
<!-- Showcase -->
<section class="showcase2">
<div class="container grid">
<div class="showcase-text">
<h1>My Blog Posts</h1>
<p>The purpose of my personal site is to share my journey and allow you to see some of my work and how I develop personally.</p>
<p>Each page is dedicated to a specific time in my life and my Blog pages allow me to share detial of significant projects I've worked on.</p>
<p>You will also find links to my Linked In and GitHub pages where I share specific files and documents.</p>
</div>
<div style="text-align: center;">
<i class="fa-solid fa-blog fa-10x" style="color: #274C77" aria-hidden="true"></i>
</div>
</div>
</section>
<main id="main-content">
<section class="cli">
<div class="container grid">
<div class="card">
<h3 class="hc3">CENTRAL BILLING PROJECT</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
<div class="card">
<h3 class="hc3">O365 MIGRATIONS</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
<div class="card">
<h3 class="hc3">MY SOCIAL RESPONSIBILITY</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
<div class="card">
<h3 class="hc3">SO WHY DID I CHANGE CAREER</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
<div class="card">
<h3 class="hc3">WORKING WITH POWER BI</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
<div class="card">
<h3 class="hc3">MY JUPYTER NOTEBOOKS</h3>
<p> </p>
<a href="Blog-Posts/blog_holdingpage.html" target="blank"> VISIT BLOG</a>
</div>
</div>
</section>
</main>
<!--Footer Bar Same Every Page -->
<footer class="footer bg-secondary py-5">
<div class="container grid grid-3">
<div>
<h1>Toby Beevers</h1>
<h2>Copyright © 2024</h2>
</div>
<nav aria-label="Secondary Navigation">
<ul>
<li><a href="./index.html" aria-current="page">Home</a></li>
<li><a href="./my_early_years.html">My Early Years</a></li>
<li><a href="./career_change.html">Career Change</a></li>
</ul>
</nav>
<nav aria-label="Secondary Navigation">
<ul>
<li><a href="./personal_development.html">Personal Development</a></li>
<li><a href="./my_links.html">My Links</a></li>
<li><a href="./my_blog.html">My Blog Posts</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>