-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
74 lines (71 loc) · 2.95 KB
/
blog.html
File metadata and controls
74 lines (71 loc) · 2.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blogs - AetherCode</title>
<link rel="icon" type="image/png" href="assets/logo.PNG" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Lato:wght@400;700&display=swap"
rel="stylesheet" />
</head>
<body>
<header class="navbar">
<div class="logo">AetherCode</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="notes.html">Notes</a></li>
<li><a href="blog.html" class="active">Blogs</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</header>
<section class="notes-section reveal">
<h1><span class="highlight">Explore</span> Our Blog</h1>
<p class="subtitle" style="color: #666; margin-top: 1rem;">Stay updated with the latest in diverse academic fields.
</p>
<div class="card-container">
<div class="note-card">
<h3>1. The Future of AI</h3>
<p>Exploring how Artificial Intelligence is reshaping our technological future.</p>
<a class="btn" href="blogs/ai-future.html">Read More</a>
</div>
<div class="note-card">
<h3>2. Quantum Physics</h3>
<p>A deep dive into the mysteries of quantum mechanics and its applications.</p>
<a class="btn" href="blogs/quantum-physics.html">Read More</a>
</div>
<div class="note-card">
<h3>3. Medical Tech</h3>
<p>How technology is revolutionizing healthcare and medicine.</p>
<a class="btn" href="blogs/medical-tech.html">Read More</a>
</div>
<div class="note-card">
<h3>4. Cyber Law</h3>
<p>Understanding the legal framework governing the digital world.</p>
<a class="btn" href="blogs/cyber-law.html">Read More</a>
</div>
<div class="note-card">
<h3>5. Digital Marketing</h3>
<p>Strategies and trends for succeeding in the digital age.</p>
<a class="btn" href="blogs/digital-marketing.html">Read More</a>
</div>
<div class="note-card">
<h3>6. Financial Literacy</h3>
<p>The importance of financial knowledge in the modern world.</p>
<a class="btn" href="blogs/financial-literacy.html">Read More</a>
</div>
<div class="note-card">
<h3>7. Programming Skills</h3>
<p>Key programming languages and skills for developers in 2026.</p>
<a class="btn" href="blogs/programming-skills.html">Read More</a>
</div>
<div class="note-card">
<h3>8. Political Systems</h3>
<p>Comparing various political structures around the globe.</p>
<a class="btn" href="blogs/political-systems.html">Read More</a>
</div>
</div>
</section>
</body>
</html>