25 lines
469 B
HTML
25 lines
469 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Test CSS</title>
|
|
<style>
|
|
body {
|
|
background: red;
|
|
color: white;
|
|
font-size: 24px;
|
|
padding: 20px;
|
|
}
|
|
.test {
|
|
background: blue;
|
|
padding: 20px;
|
|
margin: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Test CSS</h1>
|
|
<div class="test">This should have blue background</div>
|
|
<p>This should be white text on red background</p>
|
|
</body>
|
|
</html>
|