blob: 2e6a60c3478565394c4e348669431b7f36813fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
div {
font-size: 30px;
}
</style>
<body>
<p>Test passes if the number '32' appears below.</p>
<div>32</div>
</body>
|