-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.13 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>codewithzaqar - Blog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to codewithzaqar</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="blog-posts">
<article>
<h2>Release Blog Websites</h2>
<p class="meta">Posted on March 2, 2025 by codewithzaqar</p>
<p>This is the content of the first blog post.</p>
<button onclick="readMore('post1')">Read More</button>
<p id="post1" class="full-content" style="display: none;">This is the full content of the first blog post.</p>
</article>
</main>
<footer>
<p>© 2025 codewithzaqar. All rights reserved.</p>
</footer>
<script src="sctipt.js"></script>
</body>
</html>