mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
25 lines
586 B
HTML
25 lines
586 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
line-height: 1;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
color: yellow;
|
|
margin-left: 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span>X X</span></div>
|
|
</body>
|
|
</html>
|