16 lines
230 B
HTML
16 lines
230 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.test {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a green square.</p>
|
|
<div class="test"></div>
|
|
</body>
|
|
</html>
|