mirror of
https://github.com/helix-editor/helix
synced 2026-08-02 01:34:22 +02:00
33 lines
510 B
HTML
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>
|