Implement basic typing canvas

This commit is contained in:
dheeraj.reddy
2023-11-18 17:40:49 -08:00
commit 7da9efef13
3 changed files with 49 additions and 0 deletions

12
index.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>typehere</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<textarea id="typingCanvas" autofocus></textarea>
<script src="script.js"></script>
</body>
</html>