Files

33 lines
510 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Test</title>
<script>
const x = 1;
if (x) {
run();
}
</script>
<style>
body {
color: red;
}
</style>
</head>
<body>
<div class="container">
<ul>
<li>one</li>
<li>two</li>
</ul>
<img src="x.png" alt="x" />
<input
type="text"
name="q"
/>
<button onclick="go()">Go</button>
</div>
</body>
</html>