-
Notifications
You must be signed in to change notification settings - Fork 0
/
word.html
30 lines (24 loc) · 876 Bytes
/
word.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="device-width" initial-scale="1"
maximum-scale="1" user-scalable="no">
<title>throw words into the void</title>
<link rel="stylesheet" type="text/css" href="text.css">
<nav id="navbar">
<a href="index.html" id="start">start</a>
</nav>
</head>
<body>
<canvas width="480" height="580" alt="canvas element that animates the
text by the user in a way that it moves over the screen and gets
more transparent as it moves">
Ihr browser unterstützt das canvas element nicht.
</canvas>
<section id="input-section">
<input type="text" id="input">
</section>
<script src="animation.js"></script>
</body>
</html>