-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.8 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Single Blog Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Single Blog Page</h1>
<nav>
<a href="#">Home</a>
<a href="#">Projects</a>
<a href="#">About</a>
<a href="#">Blog</a>
</nav>
<button id="theme-toggle">🌓</button>
</header>
<main>
<aside class="recent-posts">
<h2>Recent Blogposts</h2>
<ul>
<li>
<img src="images/Fig1.jpeg" alt="Blog Thumbnail" height="200" width="50">
<h3>UX Design Strategies</h3>
<p>How to improve user experience...</p>
<a href="#">Read more</a>
</li>
<li>
<img src="images/Fig2.jpeg" alt="Blog Thumbnail" height="200" width="50">
<h3>Marketing in the Age of AI</h3>
<p>Exploring AI-driven solutions...</p>
<a href="#">Read more</a>
</li>
</ul>
</aside>
<section class="blog-content main-blog">
<div class="blog-header">
<h1>The Impact of Technology on the Workplace</h1>
<p class="blog-meta">January 11, 2025 | Author: John Doe</p>
</div>
<div class="blog-body">
<p>Technology is transforming the workplace in many ways, making processes more efficient and enabling remote collaboration. In this article, we explore how technology impacts productivity, work-life balance, and the future of work.</p>
<img src="images/Fig3.jpeg" alt="Blog Image" height="200" width="100">
</div>
</section>
</main>
<footer>
<p>© All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>