mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
25 lines
547 B
HTML
25 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
.fr {
|
|
float: right;
|
|
}
|
|
.green {
|
|
color: green;
|
|
}
|
|
body {
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="fr green">X X</div>
|
|
</body>
|
|
</html>
|