mirror of
https://github.com/servo/servo.git
synced 2025-06-11 01:50:10 +00:00
17 lines
430 B
HTML
17 lines
430 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.white {
|
|
color: white;
|
|
}
|
|
.bggreen {
|
|
background-color: green;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body><span class="bggreen white">White text on a green background</span></body>
|
|
</html>
|