blob: 67ec5c697fac30059c7143619bc8b44b8dd20772 (
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>
<form>
<span>This should be green</span>
<span>This should be green</span>
</form>
</body>
</html>
|