blob: 098d3ed7faba2e3cacadaab2f9421318bb90aa22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html><head>
<style>
span{
color:red;
}
</style>
</head>
<body>
<p><span>t</span>est</p>
<p><span>*t</span>est</p>
<p><span>**t</span>est</p>
<p><span>***t</span>est</p>
<p><span> </span>test</p>
</body>
</html>
|