mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
24 lines
338 B
HTML
24 lines
338 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
font-size: 36pt;
|
|
font-family: "Helvetica Neue";
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
#a {
|
|
font-stretch: normal;
|
|
}
|
|
#b {
|
|
font-stretch: condensed;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=a>Felis silvestris catus</div>
|
|
<div id=b>Felis silvestris catus</div>
|
|
</body>
|
|
</html>
|
|
|