blob: ece0e6de0f56476462e698581bf6769110aad159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background: white;
color: black;
font-size: 24px;
}
div {
background: white;
color: blue;
text-shadow: red 2px 2px 0px;
}
span {
background: yellow;
color: white;
}
</style>
</head>
<body>
<div>
hello <span>selected</span> world
</div>
</body>
</html>
|