prettier/tests/html_css/simple.html

15 lines
286 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Sample styled page</title>
<style>a { color: red; }</style>
<style>
body { background: navy; color: yellow; }
</style>
</head>
<body>
<h1>Sample styled page</h1>
<p>This page is just a demo.</p>
</body>
</html>