mirror of
https://github.com/servo/servo.git
synced 2025-06-18 05:14:28 +00:00
24 lines
525 B
HTML
24 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
margin: 32px;
|
|
}
|
|
.ib {
|
|
display: inline-block;
|
|
}
|
|
.yellow {
|
|
color: #ff0;
|
|
}
|
|
.grey {
|
|
color: #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="grey">X<span class="yellow ib">X</span></div>
|
|
</body>
|
|
</html>
|