mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
350 B
HTML
28 lines
350 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
background: white;
|
|
color: black;
|
|
font-size: 24px;
|
|
}
|
|
div {
|
|
background: white;
|
|
color: blue;
|
|
text-shadow: red 2px 2px 0px;
|
|
}
|
|
span {
|
|
background: yellow;
|
|
color: white;
|
|
text-shadow: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
hello <span>selected</span> world
|
|
</div>
|
|
</body>
|
|
</html>
|