-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
44 lines (34 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="sidebar sidebarVanish">
<nav>
<ul>
<li><a href="./index.html" color="blueviolet" target="_blank">Home</a></li>
<li><a href="./intro.html" color="blueviolet" target="_blank">My Intro</a></li>
<li><a href="./blog.html" color="blueviolet" target="_blank">Blog</a> </li>
<li> <a href="./projects.html" color="blueviolet" target="_blank">My Projects</a></li>
<li> <a href="./accounts.html" color="blueviolet" target="_blank">My Social Media Accounts</a></li>
<li> <a href="./contact.html" color="blueviolet" target="_blank">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hamburger">
<img src="ham.png" alt="" class="ham" width="35px">
<img src="crossmenu.png" alt="" class="cross" width="35px">
</div>
</div>
</div>
<!-- <script src="index.js"></script> -->
<script src="script.js"></script>
</body>
</html>