html
html
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<button onclick="alert('Learning Introduction to JS in HTML section')">Click Me</button><br>
<img src="https://images.unsplash.com/photo-1480044965905-02098d419e96?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" width="200px" alt="a yellow bird on sakura tree" onclick="alert('trying JS on an image')"><br>
<img src="https://blob.sololearn.com/courses/robot-c.jpg" alt="a sololearn robot"><br>
<button onclick="robot.src='http://www.sololearn.com/images/tree.jpg'">Show Tree</button>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
body
{
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run