mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
22 lines
455 B
HTML
22 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
margin: 0;
|
|
line-height: 1;
|
|
}
|
|
.fl {
|
|
float: left;
|
|
}
|
|
.green {
|
|
color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="fl green">X X</div>
|
|
</body>
|
|
</html>
|