-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
38 lines (36 loc) · 754 Bytes
/
index3.html
File metadata and controls
38 lines (36 loc) · 754 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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example</title>
<style>
#ntjs{
background-color: #bababa;
}
#ntjsText{
color: red;
}
#ntjsCursor{
color: green;
font-weight: bold;
font-size: 2em;
}
</style>
</head>
<body>
<h3>This demo is all about</h3>
<div id="ntjs">
<p>Styling the different parts</p>
<p>Not using jQuery</p>
<p>Saving KB's</p>
<p>Other demo's at index[number number 2 or 3].html</p>
</div>
<script src="nativeTypedJS.min.js"></script>
<script>
// Equivalent $(document).ready(function(){});
document.addEventListener("DOMContentLoaded", function(event) {
nativeTypedJS();
});
</script>
</body>
</html>