-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblog.html
More file actions
75 lines (69 loc) · 2.55 KB
/
blog.html
File metadata and controls
75 lines (69 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blog - Precious Kolawole</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Blog posts and writings by Precious Kolawole on engineering, career growth, healthcare AI, and technology."
/>
<link rel="stylesheet" type="text/css" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.7/css/all.css"
/>
</head>
<body>
<header class="site-header">
<nav class="nav">
<div class="container flex-wrap">
<h1 class="logo">
<a href="https://precillieo.github.io">Precious Kolawole</a>
</h1>
<ul class="navbar">
<li><a href="index.html#about">About</a></li>
<li><a href="news.html">News</a></li>
<li><a href="assets/resume.pdf">CV</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="https://www.precillieo.com/" target="_blank">Other website</a></li>
</ul>
</div>
</nav>
</header>
<article class="page container">
<div class="page-content">
<div class="container">
<h1 class="header-name">Blog</h1>
<ul class="list blog-list">
<li>
<a href="blog/the-purpose-reset.html">A Talk on Resetting Your Life: Personal, Academic, and Career</a>
</li>
<li>
<a href="blog/message-to-early-career-engineers.html">Message to Early Career Engineers</a>
</li>
</ul>
<p style="text-align: center; margin-top: 2em;">
<a href="https://precillieo.medium.com/" target="_blank" style="font-weight: 600;">Read more on Medium →</a>
</p>
</div>
</div>
</article>
<footer class="site-footer">
<div class="container">
<small><b>Last Updated:</b> January 2026</small>
<small class="block">
© Precious Kolawole. Inspired by
<a href="https://stevenkolawole.github.io/" target="_blank"><span style="color: #FFC0CB">Steven Kolawole's page</span></a>
· Hosted on
<a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
</small>
</div>
</footer>
</body>
</html>