15 lines
251 B
HTML
15 lines
251 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
p { color: green; }
|
|
</style>
|
|
<style>
|
|
div { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>This text should be green.</p>
|
|
<div>This text should be green.</p>
|
|
</body>
|
|
</html>
|