14 lines
239 B
HTML
14 lines
239 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<link rel="stylesheet" href="/main.css" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="/main.js"></script>
|
|
<script>
|
|
(async () => {
|
|
root.append(await pageHome());
|
|
})();
|
|
</script>
|
|
</body>
|