mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-17 05:07:10 +00:00
21 lines
297 B
HTML
21 lines
297 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
.separator {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
#margin-only {
|
||
|
margin-top: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="separator"></div>
|
||
|
<div id="margin-only"></div>
|
||
|
<div class="separator"></div>
|
||
|
</body>
|
||
|
</html>
|