-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (63 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Oswald|Raleway" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class='container'>
<header class='header'>
<div class='logo'>
<i class="fab fa-firefox fa-5x"></i>
</div>
<div class='links'>
<a href="#">Area 1</a>
<a href="#">Area 2</a>
<a href="#">Area 3</a>
<a onClick='A51()' href="#">Area 51</a>
</div>
<button onClick='hamburger()' class='hamburger-icon'>
<i class="fas fa-bars fa-2x"></i>
</button>
</header>
<div class='hero'>
<div class='hero-container'>
<div class='hero-content'>
<h1>Welcome Here</h1>
<hr>
<p> message ahdhkadhukahdakhdk uajkdsasdasdasdjkasjhasjkldhaskd ajkdhsakadjhdklashdkasl</p>
</div>
<button id='button' onClick='button()'>Click Me Please</button>
</div>
</div>
<footer class='footer'>
<div class='footer-content'>
<i class="fab fa-facebook-f fa-2x"></i>
<i class="fab fa-facebook-messenger fa-2x"></i>
<i class="fab fa-instagram fa-2x"></i>
<i class="fab fa-youtube fa-2x"></i>
</div>
</footer>
</div>
</body>
<script>
function A51(){
alert('TOP SECRET ACCESS DENIED');
}
function button(){
let holder=document.getElementById('button');
if(holder.innerHTML=="Thank You"){
holder.innerHTML="Click Me Please";
}
else{
holder.innerHTML="Thank You"
}
}
function hamburger(){
alert('No Functionality');
}
</script>
</html>