34 lines
952 B
HTML
34 lines
952 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>compiled.world | demo</title>
|
|
<link href="/static/css/cw.css">
|
|
</head>
|
|
<body>
|
|
<h1>h1</h1>
|
|
<h1>h2</h1>
|
|
<h1>h3</h1>
|
|
<h1>h4</h1>
|
|
|
|
<p>
|
|
This is a paragraph.
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
|
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
|
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
</p>
|
|
|
|
<button>
|
|
This is a button.
|
|
</button>
|
|
|
|
<select>
|
|
<option>This</option>
|
|
<option>is</option>
|
|
<option>a</option>
|
|
<option>select</option>
|
|
<option>tag</option>
|
|
</select>
|
|
</body>
|
|
</html>
|