mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-19 07:31:25 +00:00
23 lines
278 B
HTML
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>
|