forked from su7ox/WebDev-TeamIND
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCurrentAffairs.html
More file actions
77 lines (72 loc) · 2.61 KB
/
CurrentAffairs.html
File metadata and controls
77 lines (72 loc) · 2.61 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
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Current Affairs</title>
</head>
<body>
<div class="bioH">
<header class="header-with-animation">
<h1>Current Affairs</h1>
</header>
</div>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<div class="search-bar-science">
<input type="text" id="searchInput" placeholder="Search Subjects...">
<button class="search-button" onclick="searchSubjects()">Search</button>
</div>
<center><h2>Subjects</h2></center>
<div class="bodi">
<!-- First Row -->
<div class="Biobox-container">
<div class="box">
<h3>International Affairs</h3>
<p>About International Affairs</p>
<a href="international.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>National Affairs</h3>
<p>About National Affairs</p>
<a href="national.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>Economic Affairs</h3>
<p>About Economic Affairs</p>
<a href="economic.html" class="cta-button">Topics</a>
</div>
</div>
<!-- Second Row -->
<div class="Biobox-container">
<div class="box">
<h3>Social Affairs</h3>
<p>About Social Affairs</p>
<a href="social.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>Political Affairs</h3>
<p>About Political Affairs</p>
<a href="political.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>Environmental Affairs</h3>
<p>About Environmental Affairs</p>
<a href="environmental.html" class="cta-button">Topics</a>
</div>
</div>
</div>
<script>
// Add the CSS class dynamically for header animation
const header = document.querySelector('.header-with-animation');
header.classList.add('header-animation');
</script>
</body>
</html>