mirror of
https://github.com/servo/servo.git
synced 2025-06-18 13:24:29 +00:00
36 lines
834 B
HTML
36 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: white;
|
|
}
|
|
.red {
|
|
color: red;
|
|
}
|
|
.green {
|
|
color: green;
|
|
}
|
|
.ib {
|
|
display: inline-block;
|
|
}
|
|
span {
|
|
font-family: ahem;
|
|
font-size: 100px;
|
|
}
|
|
.bg {
|
|
background-color: white;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg">
|
|
<span class="red">X</span><img src="400x400_green.png"><span class="green ib">X</span>
|
|
</div>
|
|
</body>
|
|
</html>
|