-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<title>Slick</title>
<link rel ="stylesheet" href="main.css">
<link rel="stylesheet" href="transition.css">
</head>
<body>
<script src="/js/index.js"></script>
<div id="mySidenav" class="sidenav">
<a href="javasript:void(0)" class="closebtn" onclick="closeNav()">× </a>;
<a href="#"><a href="social.html" target="_blank" ><br>My Socials</a></a>
<a href="#"><a href="info.html" target="_blank" > <br>Info</a></a>
<a href="#"><a href="contact.html" target="_blank"><br>Contact</a></a>
</div>
<div id="main">
<span style="font-size:30px; cursor:pointer" onclick="openNav()">☰About Me</span>
</div>
<script>
function openNav()
{
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav()
{
document.getElementById("mySidenav").style.width = "0px";
document.getElementById("main").style.marginLeft = "0px";
}
</script>
<h1>This is Kruti Deepan Panda's page</h1>
<hr>
<audio controls autoplay class="audio">
<source src="Boku no Hero Academia OST 03 My Hero Academia Main Theme.ogg" type="audio/ogg">
<source src="Boku no Hero Academia OST 03 My Hero Academia Main Theme.mp3" type="audio/mpeg">
Damn, which era you living in. Your browser can't even support mp3 files. Yuck!
</audio>
<img src="IMG_20190208_172713.jpg" alt="image" class="center">
<hr>
<h2>Just Click on the side panel for info, I am not going to tell you any thing about myself.</h2>
</body>
</html>