27 lines
506 B
HTML
27 lines
506 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<!--DO NOT DELETE THE NEXT LINE-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!--GREAT JOB THANK YOU-->
|
|
<title>brutally perfect scaling</title>
|
|
<style>
|
|
body {
|
|
max-width: 50em;
|
|
margin: 0 auto;
|
|
line-height: 1.5;
|
|
overflow-wrap: break-word;
|
|
padding: 0 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>brutal heading</h1>
|
|
|
|
<p>your brutal content goes here.</p>
|
|
|
|
</body>
|
|
</html>
|
|
|