-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
31 lines (31 loc) · 905 Bytes
/
blog.html
File metadata and controls
31 lines (31 loc) · 905 Bytes
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
<!DOCTYPE html>
<!--
Helpful Links Used to Build Webpage:
1) https://www.youtube.com/watch?v=VegDvRLVlOI&t=170s&ab_channel=BrianDesign
2) https://medium.com/@ianjsikes/build-a-personal-website-with-html-and-css-part-1-3013fb5dacd4
3) https://www.youtube.com/watch?v=OltY8JIaP-4&ab_channel=KennyYipCoding
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width",
initial-scale="1.0">
<link rel="stylesheet" href="style.css">
<title>MAIN PAGE</title>
</head>
<body>
<nav>
<div class="logo-image">
<a href="./index.html">
<img src="weblogo.png" class="img-fluid" width="auto" height="50" >
</a>
</div>
<div class="nav-items">
<a href="./projects.html">Projects</a>
<a href="./blog.html">Blog</a>
<a href="./resume.html">CV/Resume</a>
</div>
</nav>
<h1> Under Construction</h1>
</body>
</html>