-
Notifications
You must be signed in to change notification settings - Fork 0
/
dom.html
53 lines (34 loc) · 1014 Bytes
/
dom.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="index.css">
<body >
<button id="topbutton">click me</button >
<button class="heading-cls"> contact us </button >
<button class="heading-cls"> help center</button >
<p>lets learn abut js </p>
<p> paragraph 2 </p>
<h1>
old heading
</h1>
<h2 id="heading2">
Hello Javascript
</h2>
<div class="boxes">first </div>
<div class="boxes">second</div>
<div class="boxes">third</div>
<div id="box" >this iis a div
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</div>
<div id="box" name="jsattribute">this iis a div</div>
<p2 class="para">this is a simple line </p2>
<p class="content"><i>i am a paragraph</i> </p>
<script src="dom.js"></script>
</body>
</html>