19 lines
565 B
HTML
19 lines
565 B
HTML
<!doctype html>
|
|
<head>
|
|
<link rel="icon" href="data:image/png;base64,iVBORw0KGgo=">
|
|
</head>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hello, World!</title>
|
|
</head>
|
|
<body>
|
|
<h1 id="heading"></h1>
|
|
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
|
|
<button id="button" type="button">Fetch a random UUID</button>
|
|
<output id="random" for="button"></output>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|