blob: f3dd889a0e15013f8e682f911db63ffe9a863c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<style>
span {color: green}
</style>
</head>
<body>
<span>Should be no red </span><br>
<span>Should be no red </span><br>
<span style="color:blue">Should be no red </span>
</body>
</html>
|