-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 962 Bytes
/
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typed.js Test</title>
<link rel="stylesheet" href="style.css">
<script defer src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script defer src="typedjs-config.js"></script>
</head>
<body>
<div id="mainDiv">
<div id="inputContainer">
<textarea id="inputField" rows="3" cols="25" placeholder="Enter Your Text :)" value="Enter Your Text Into The Input Field" type="text"></textarea>
<div id="numberInputContainer">
<h6>Speed (Lower = Faster)</h6>
<input type="number" value="40" id="typeSpeedInput">
</div>
</div>
<div id="outputContainer">
<h1><span class="input1"></span></h1>
</div>
</div>
</body>
</html>