-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdom.html
More file actions
39 lines (33 loc) · 738 Bytes
/
dom.html
File metadata and controls
39 lines (33 loc) · 738 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<script src="./dom.js"></script>
<style>
.header{
width: 100%;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<h1 id="text">
HELLO
</h1>
<button onclick="change1()">CLICK</button>
<a href="https://www.youtube.com/" id = "yt">youtube</a>
<button onclick="change2()">CLICK 2</button>
<div name="print">
<p>HELLO</p>
</div>
<div name="print">
<p>HI</p>
</div>
<p>
HELLO THIS IS P TAG
</p>
<div class="header">
</div>
<button onclick="change3()">CLICK 3</button>
</body>
</html>