-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
50 lines (39 loc) · 1.55 KB
/
home.html
File metadata and controls
50 lines (39 loc) · 1.55 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
<!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="style2.css">
<title>Cool Cat Website</title>
<script>
function PlayandAnimate(){
document.getElementById('items').style.animationName="letzgoo";
document.getElementById('items').style.background="url('paws.png')";
document.getElementById('items').style.backgroundSize='cover';
document.getElementById('invisible').style.opacity='0%';
document.getElementById('audio').play();
}
</script>
</head>
<body>
<header>
<h1>COOL CAT</h1>
<div class="head_items">
<a href="home.html" class="head_hyperlink">Home</a>
<a href="mailto:m8011029@gsstulsipur.edu.np" class="head_hyperlink">Contact</a>
<a href="info.html" class="head_hyperlink">Cat Info</a>
<a href="index.html" class="head_hyperlink">Login</a>
<input type="search" class="head_search" placeholder="SEARCH">
<a href="search.html"><img src="search.png" class="head_img"></a>
</div>
</header>
<div class="main">
<div class="items" id="items" onclick="PlayandAnimate()">
<p id="invisible">HUMAN! USE YOUR PAWS, TAP HERE & LETS ROCK!!</p>
</div>
<div class="items">
</div>
</div>
<audio id="audio" src="cat1.mp3" loop></audio>
</body>
</html>