-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.68 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<!-- <link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" /> -->
<link href="nes.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png">
<title>BUG BITS | Just a CSS game</title>
</head>
<body>
<div class="splash-screen">
<div class="splash-screen__box">
<ul class="splash-screen__logo">
<li class="splash-screen__letter">B</li>
<li class="splash-screen__letter">U</li>
<li class="splash-screen__letter">G</li>
<li class="splash-screen__letter"> </li>
<li class="splash-screen__letter">B</li>
<li class="splash-screen__letter">I</li>
<li class="splash-screen__letter">T</li>
<li class="splash-screen__letter">S</li>
</ul>
<h5 class="splash-screen_text typewritter">A CSS Game by <a href="https://www.twitter.com/maleekcodes" target="_blank">@maleekcodes</a>🤓</h5>
<a class="nes-btn button" href="game.html">START GAME</a>
</div>
</div>
<audio controls loop autoplay>
<source src="music.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>