mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
359 B
HTML
24 lines
359 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span {
|
|
font-weight:bold;
|
|
font-style: italic;
|
|
font-size: 200%;
|
|
font-variant: small-caps;
|
|
font-family: sans-serif;
|
|
color:red;
|
|
}
|
|
span.line {
|
|
background: yellow;
|
|
text-decoration: line-through;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p><span>H</span>ello
|
|
<div><span class="line">Hello</span><br>Kitty</div>
|
|
</body>
|
|
</html>
|