mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
25 lines
606 B
HTML
25 lines
606 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
line-height: 1;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
color: yellow;
|
|
margin-left: 50px;
|
|
margin-right: 50px;
|
|
background: yellow;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span></span><span></span></div>
|
|
</body>
|
|
</html>
|