html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
Good Habits of Bill -
<ul>
<li>Bill always uses search bar before asking a question</li>
<li>Bill always sticks his code link with his question</li>
<li>Bill never asks a homework question without attempting it</li>
<li>Bill doesn't want to hack NASA/Facebook/Google with HTML</li>
<li>Bill always asks programming-related question</li>
<li>Bill never posts 1 question more than 1 time</li>
<li>Bill never copies code without giving credit</li>
<li>Bill knows that the best language is English</li>
<li>Bill never advertises his code/channel/anything in Q&A section</li>
<li>Bill uses posts section for sharing his thoughts</li>
<li>Bill never uses bad words</li>
<li>Bill is not a spammer</li>
<li>Bill always tries to help others</li>
</ul>
<div align="center">
<button onclick="imp()">Click here to know that, then what you have to do</button></div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
let imp = function() {
alert("Be like Bill");
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run