mirror of
https://github.com/servo/servo.git
synced 2025-06-29 19:43:39 +01:00
15 lines
235 B
HTML
15 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>
|