html
html
1
2
3
4
5
6
7
8
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="test"></div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
#test {
background-image: url("http://www.sololearn.com/uploads/css_logo.png");
background-color: #0C0C0C;
background-repeat: no-repeat;
background-size: 100% 100%;
top: 20px;
left: 20px;
width: 100px;
height: 100px;
border: 5px solid black;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run