-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (24 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="A web page that looks like the startup screen of a Commodore 64">
<meta name="keywords" content="Commodore,64,C64,startup,screen">
<link rel="stylesheet" type="text/css" href="style/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/johnboker/jquery.blink/master/jquery.blink.js"></script>
<title>C64 startup screen</title>
</head>
<body>
<div id="c64">
<div id="c64-startup">
<div id="c64-startup-header" class="c64-font">**** COMMODORE 64 BASIC V2 ****<br /><br />64K RAM SYSTEM 38911 BASIC BYTES FREE</div>
<div id="c64-startup-prompt" class="c64-font">READY.<br /><span class="typewriter">LOAD"C64-STARTUP-SCREEN",8,1</span><span class="blink">█</span></div>
<div id="c64-startup-footnote">
<a href="https://github.com/kambrium/c64-startup-screen">c64-startup-screen@GitHub</a>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>