mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
27 lines
386 B
HTML
27 lines
386 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>You see here a scroll labeled KERNOD WEL.</title>
|
|
<style>
|
|
body {
|
|
font-size: 40px;
|
|
}
|
|
#d {
|
|
float: right;
|
|
background: green;
|
|
color: white;
|
|
}
|
|
#c {
|
|
clear: both;
|
|
background-color: blue;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=d>Beetlejuice</div>
|
|
<div id=a>Beetlejuice</div>
|
|
<div id=c>Beetlejuice</div>
|
|
</body>
|
|
</html>
|
|
|