mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
330 B
HTML
21 lines
330 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;
|
||
|
text-decoration: line-through;
|
||
|
color:red; background: yellow;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p><span>H</span>ello
|
||
|
<div><span>Hello</span><br>Kitty</div>
|
||
|
</body>
|
||
|
</html>
|