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
27
28
<!DOCTYPE html>
<html>
<head>
<h1 style="background-color:#FFCA3A; color:red">New Awesome Fidget Product</h1>
<img src=https://toppng.com/uploads/preview/fidget-spinner-png-file-fidget-spinner-115639496235csiqwkkrq.png id="img">
<h2>order now!</h2>
<form>
<select>
<option>XL small</option>
<option>small</option>
<option selected>normal</option>
<option>big</option>
<option>XL big</option>
<option>XXL big</option>
</select>
<select>
<option>red</option>
<option>blue</option>
<option>green</option>
<option>yellow</option>
<option>black</option>
<option selected>white</option>
<option>purple</option>
<option>orange</option>
<option>pink</option>
<option>brown</option>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
body {
background-color: red;
}
img {
width:150px;
height:150px;
background-color: red;
}
submit {
width:50px;
height:25px;
background-color: blue;
}
reset {
width:100px;
height:25px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
8
function myFunction() {
var x = document.getElementById("word");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run