-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDOM.html
More file actions
41 lines (37 loc) · 1.06 KB
/
DOM.html
File metadata and controls
41 lines (37 loc) · 1.06 KB
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
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JAVASCRIPT BASICS</title>
</head>
<body onload="onLoad()">
<!-- <div id="para"></div>
<p class="p1"></p>
<p class="p1"></p>
<p class="p1"></p>
<ul>
<li>abes</li>
<li>engineering</li>
<li>college</li>
<li>ghaziabad</li>
</ul>
<h1 id ="myH1" class ="democlass">The Element Object</h1>
<p id="demo">element</p>
<button onclick="myFunction()">Call Function</button> -->
<!-- <button onclick="onClick()">OnClick</button>
<br><br>
<button onmouseover="onMouseOver()">onMouseOver</button>
<br><br>
<button onmouseout="onMouseOut()"> onMouseOut</button>
<br><br>
<button onmouseup="onMouseUp()">onMouseUp</button>
<br><br>
<button onmousedown="onMouseDown()">onMouseDown</button>
<br><br>
<button onmousemove="onMouseMove()">onMouseMove</button>
<br><br> -->
<p id="para"></p>
<script src="./DOM.js"></script>
</body>
</html>