mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
251 B
HTML
16 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>
|