forked from petlatkea/2019_typewriter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypewriter.html
More file actions
27 lines (25 loc) · 829 Bytes
/
typewriter.html
File metadata and controls
27 lines (25 loc) · 829 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Typewriter</title>
<link href="https://fonts.googleapis.com/css?family=Special+Elite" rel="stylesheet">
<style>
#typewriter {
font-family: 'Special Elite', cursive;
}
</style>
</head>
<body>
<h1 id="typewriter">This text is written one character at a time</h1>
<button id="btn">Push me!</button>
<div id="sounds">
<audio id="typekey1" src="typekey1.mp3"></audio>
<audio id="typekey2" src="typekey2.mp3"></audio>
<audio id="typespace" src="typespace.mp3"></audio>
</div>
<script src="typewriter.js"></script>
</body>
</html>