mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
29 lines
359 B
HTML
29 lines
359 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>You see here a scroll labeled VE FORBRYDERNE.</title>
|
|
<style>
|
|
div {
|
|
width: 50px;
|
|
}
|
|
#a {
|
|
background: red;
|
|
height: 100px;
|
|
}
|
|
#b {
|
|
background: green;
|
|
height: 50px;
|
|
}
|
|
#c {
|
|
background: blue;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=a></div>
|
|
<div id=b></div>
|
|
<div id=c></div>
|
|
</body>
|
|
</html>
|
|
|