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