-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathday1-dom.html
More file actions
32 lines (30 loc) · 825 Bytes
/
Copy pathday1-dom.html
File metadata and controls
32 lines (30 loc) · 825 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DOM Manipulation Example</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
}
.highlight {
color: red;
font-weight: bold;
}
</style>
<script src="domscript.js" ></script>
</head>
<body>
<h1>DOM Manipulation Example</h1>
<p id="demo">Hello, this is a sample paragraph.</p>
<button onclick="changeContent()">Change Content</button>
<button onclick="changeStyle()">Change Style</button>
<button onclick="changeAttribute()">Change Attribute</button>
</body>
</html>