mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
19 lines
274 B
HTML
19 lines
274 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
background: yellow;
|
|
}
|
|
table {
|
|
border-spacing: 100px;
|
|
background: darkblue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table></table>
|
|
</body>
|
|
</html>
|
|
|