-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.33 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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>JS Exercises</title>
<style>
body {padding-top:50px}
</style>
</head>
<body onload="animateString('target')">
<pre id="target">I love JavaScript</pre>
<h1 style="background-color: aqua; color: rgb(74, 8, 189); display: flex; justify-content: center; align-items: center;">JS PLAYGROUND</h1>
<input type="text" id="text1"></input>
<input
type="button"
id="button1"
value="Add"
onclick="add_element_to_array();"
></input>
<input
type="button"
id="button2"
value="Display"
onclick="display_array();"
></input>
<div id="Result"></div>
<p>Click the button to print the current page.</p>
<button onclick="printCurrentPage()">Print this page</button>
<script src="playground.js"></script>
<script src="Q1-Q20.js"></script>
<script src="/basicArrayExercises.js"></script>
<script src="/basicObjectExercises.js"></script>
<script src="/JavaScriptBasic.js"></script>
</body>
</html>