15 lines
329 B
HTML
15 lines
329 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
div {
|
|
font-size: 36px;
|
|
}
|
|
span {
|
|
color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if the "T" and surrounding punctuation below are green.</p>
|
|
<div><span>၎̀T̀၎̀</span>est</div>
|
|
</body>
|