blob: 87669f50345494a0cdc78787913f8d24c7cc5740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!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>
|