mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
16 lines
235 B
HTML
16 lines
235 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
div {
|
|
width: 300px;
|
|
height: 300px;
|
|
background-image: url("./resources/html5.png");
|
|
background-repeat: no-repeat;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|