mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
20 lines
450 B
HTML
20 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: 'ahem';
|
|
margin: 0;
|
|
}
|
|
span {
|
|
background-image:url(line.png);
|
|
background-position:0% 100%;
|
|
font-size: 20px;
|
|
color: rgba(255, 255, 0, 0);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span>X</span>
|
|
</body>
|
|
</html>
|