mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
25 lines
552 B
HTML
25 lines
552 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: white;
|
|
}
|
|
span {
|
|
color: yellow;
|
|
font-family: ahem;
|
|
font-size: 128px;
|
|
line-height: 1.0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span>X</span>
|
|
</body>
|
|
</html>
|