-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.23 KB
/
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
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Typewriter Effect</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="div1">
<h1 id="heading1">Hello from Sayok. This animation starts with page load.</h1>
</div>
<div style="text-align: center;">
<h1 id="heading2">This Type Writter Effect Has Been created By Me.</h1><button class="btn btn-primary" id="animateBtn" type="button">Click to animate the above text</button></div>
<div style="text-align: center;">
<h1 id="heading3" dir="rtl">This works with RTL layouts too...</h1><button class="btn btn-primary" id="animateBtn2" type="button">Click to animate the above text</button></div>
<div style="text-align: center;">
<h1 id="heading4">Hover over the text to see the effect.</h1>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/js/typewriter.js"></script>
</body>
</html>