-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedu-portal.html
78 lines (76 loc) · 3.31 KB
/
edu-portal.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
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
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Education Portal</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<header>
<h1>Welcome to our Education Portal</h1>
</header>
<nav>
<button onclick="showSection('articles')">Articles</button>
<button onclick="showSection('tutorials')">Tutorials</button>
<!-- Add more navigation buttons as needed -->
</nav>
<section id="articles" class="content-section">
<h2>Articles</h2>
<div class="article-container">
<div class="gift-card">
<h3><a href="https://www.indiafilings.com/learn/e-verify-income-tax-return-evc/" target="_blank">Article No. 1</a></h3>
<p>This is the content of the article 1.</p>
</div>
<div class="gift-card">
<h3><a href="https://cleartax.in/s/how-to-efile-itr" target="_blank">Article No. 2</a></h3>
<p>This is another article 2.</p>
</div>
<div class="gift-card">
<h3><a href="https://www.business-standard.com/finance/personal-finance/10-things-taxpayers-should-keep-in-mind-before-filing-income-tax-return-123062100478_1.html" target="_blank">Article No. 3</a></h3>
<p>This is yet another article 3.</p>
</div>
<div class="gift-card">
<h3><a href="https://cleartax.in/s/old-tax-regime-vs-new-tax-regime" target="_blank">Article No. 4</a></h3>
<p>This is the fourth article 4.</p>
</div>
</div>
</section>
<section id="tutorials" class="content-section" style="display: none;">
<h2>Tutorials</h2>
<div class="tutorial-container">
<div class="gift-card">
<h3>Tutorial No. 1</h3>
<p>This is the tax planning tutorial.</p>
<a href="https://youtu.be/EWIFyODtNTM?si=kGbpoDAiPBfLO34p" target="_blank">Watch Tutorial Video</a>
</div>
<div class="gift-card">
<h3>Tutorial No. 2</h3>
<p>Tax Planning Guide for a Salaried Professional.</p>
<a href="https://youtu.be/DpFXj2evzPY?si=Qqqep0EUxMCg_J-u" target="_blank">Watch Tutorial Video</a>
</div>
<div class="gift-card">
<h3>Tutorial No. 3</h3>
<p>How to File Income Tax Return 2024.</p>
<a href="https://youtu.be/MoQhspKxv7E?si=FfYxwgBMw7fUGvfI" target="_blank">Watch Tutorial Video</a>
</div>
<div class="gift-card">
<h3>Tutorial No. 4</h3>
<p>5 Important Things to Do Before ITR Filing AY 23-24.</p>
<a href="https://youtu.be/ssQpG5IPGqM?si=wsqkMsav6IBY_WY1" target="_blank">Watch Tutorial Video</a>
</div>
</div>
</section>
<footer>
<p>© 2024 Education Portal. All rights reserved.</p>
</footer>
<script>
function showSection(sectionId) {
document.querySelectorAll('.content-section').forEach(section => {
section.style.display = 'none';
});
document.getElementById(sectionId).style.display = 'block';
}
</script>
</body>
</html>