-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
33 lines (31 loc) · 1003 Bytes
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yaser Khalighi - Blogs</title>
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Yaser's Blog</h1>
<nav>
<a href="index.html">Home</a>
<a href="blogs.html">Blogs</a>
</nav>
</header>
<section id="blogs">
<h2>My Blogs</h2>
<div id="blog-container">
<!-- Blog links will be loaded here -->
</div>
</section>
<script src="scripts/loadBlogs.js"></script>
<canvas id="backgroundCanvas" width="500" height="500"></canvas>
<script src="scripts/background.js"></script>
<footer id="footer"></footer>
<script src="scripts/loadFooter.js"></script>
</body>
</html>