13 lines
201 B
HTML
13 lines
201 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Reference</title>
|
|
<style>
|
|
* { margin: 0; padding: 0 }
|
|
|
|
div {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: lime;
|
|
}
|
|
</style>
|
|
<div></div>
|