mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
24 lines
628 B
HTML
24 lines
628 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
.large-border {
|
|
border-left: 100px solid red;
|
|
border-right: 100px solid blue;
|
|
}
|
|
.green {
|
|
color: green;
|
|
}
|
|
body {
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body><span class="large-border green">X</span></body>
|
|
</html>
|