Files
2018-02-02 04:16:08 -05:00

23 lines
278 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
margin: 0; padding: 0;
}
html {
background-color: white;
margin: 20px 0;
}
div {
background-color: green;
margin: 10px 0;
height: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>