blob: faf31fffc41bbf8a1f950b1bf9d1c79292eb2717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<meta charset="utf-8">
<html>
<title>A reference of green box</title>
<style>
div {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<div></div>
</html>
|