mirror of
https://github.com/servo/servo.git
synced 2025-07-31 19:20:22 +01:00
25 lines
573 B
HTML
25 lines
573 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: 50px;
|
|
line-height: 1;
|
|
color: red;
|
|
}
|
|
img {
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><img src="100x100_green.png"></div>
|
|
<div>A</div>
|
|
</body>
|
|
</html>
|