-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex_archive.html
More file actions
43 lines (39 loc) · 1.22 KB
/
index_archive.html
File metadata and controls
43 lines (39 loc) · 1.22 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
<!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="style.css">
<title>Learner Page</title>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo">TechKnow</h2>
</header>
<video src="Video/video.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<div class="text">
<h2> Learning </h2>
<h3> made easy!</h3>
<p>Get to know all emerging Technologies and Understand in Simple Terms!</p>
<a href="resources.html">Keep Learning</a>
</div>
</section>
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<script>
const menuToggle = document.querySelector('.toggle');
const showcase = document.querySelector('.showcase');
menuToggle.addEventListener('click', () => {
menuToggle.classList.toggle('active');
showcase.classList.toggle('active');
})
</script>
</body>
</html>