-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kruph</title>
<link rel="shortcut icon" href="image/icon2.ico" />
<link rel="stylesheet" href="nav.css" />
<script src="nav.js"></script>
</head>
<body class="body_bg">
<div class="galaxy">
<audio
src="audio/shuttle_ship.mp3"
autoplay=""
allow="autoplay"
id="ship"
>
Your browser does not support the audio element.
</audio>
<a href="#" onclick="startAud()">Kruph</a>
</div>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<a href="about.html">ABOUT</a>
<a href="index.html">HOME</a>
<a href="articles.html">BLOG</a>
<a href="contact.html">CONTACT</a>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰</button>
</div>
<!-- <embed src="audio/shuttle_ship.mp3" autostart="true" loop="false" /> -->
</body>
</html>