-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Charm&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./icon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/loader.js"></script>
<title>Akan Website</title>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo"><img src="./giphy.gif" style="width: 175px; height: 175px; "></h2>
<div class="toggle"></div>
</header>
<video src="./Akan.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<div class="text">
<h2>Happy birthday!</h2>
<h3>Here’s to more life, love, and adventures with you to come!</h3>
<p>In this webpage the application takes the user's birthday and calculates the day of the week they were born.</p>
<a href="./explore.html">Explore</a>
</div>
<ul class="social">
<li><a href="#"><img src ="./images/facebook.png"></a> </li>
<li><a href="#"><img src ="./images/twitter.png"></a></li>
<li><a href="#"><img src="./images/instagram.png"></a></li>
</ul>
</section>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="./welcome.html">Birthday wish</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./explore.html">Explore</a></li>
<li><a href="./contact.html">Contacts</a></li>
</ul>
</div>
<script>
var menuToggle = document.querySelector('.toggle')
var showcase = document.querySelector('.showcase')
menuToggle.addEventListener('click',() => {
menuToggle.classList.toggle('active')
showcase.classList.toggle('active')
})
</script>
</body>
</html>