-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintroduction.html
33 lines (20 loc) · 927 Bytes
/
introduction.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
<!DOCTYPE html>
<html>
<head>
<title>Introduction</title>
</head>
<body>
<h3 id="heading3">Hello Javascript</h3>
<button onclick='document.getElementById("heading3").style.fontSize="20px"'> Change Font 20px</button>
<button onclick="document.getElementById('heading3').style.fontSize='50px'">Change font 50px</button>
<button onclick="document.getElementById('heading3').style.display='block'">Show Heading</button>
<button onclick="document.getElementById('heading3').style.display='none'">Hide Heading</button>
<br/><hr/>
<div id="container">Hello World</div>
<button onclick='document.getElementById("container").innerHTML = "Learning Javascript"'>Change Text</button>
<br/><hr/>
<img id="thumbnail" src="https://picsum.photos/300/300?image=1084">
<button onclick="document.getElementById('thumbnail').src='https://picsum.photos/300/300?image=1080'">Change Image</button>
<br/><hr/>
</body>
</html>