mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
19 lines
268 B
HTML
19 lines
268 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
#destination {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: url("../rust-0.png");
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="destination"></div>
|
|
</body>
|
|
</html>
|