html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="textonimg">hello world</div>
<!--a div with the images width and height and an image as background-->
<img id="changesize" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6569Erc5tyzsHXQaDK_f-oM7oydzDwHjv15H3SpzY6TkaJUNyWwmrMgOeqg"/>
<!--an img with no text, a width and height of 100px and a background image-->
<img id="changescale" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6569Erc5tyzsHXQaDK_f-oM7oydzDwHjv15H3SpzY6TkaJUNyWwmrMgOeqg"/>
<!--an img with scaled to 1/10th of its original length,height and Z, so 1/1000th of its original size-->
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
#textonimg {
background-image:url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6569Erc5tyzsHXQaDK_f-oM7oydzDwHjv15H3SpzY6TkaJUNyWwmrMgOeqg");
width:470px;
height:312px;
}
#changesize {
width:100px;
height:100px;
}
#changescale {
transform:scale(0.1);
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run