mirror of
https://github.com/servo/servo.git
synced 2025-06-19 22:59:03 +01:00
18 lines
220 B
HTML
18 lines
220 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#first {
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|