mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
25 lines
311 B
HTML
25 lines
311 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
div {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
background: steelblue;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>Four <span>score</span> and seven years ago</div>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|