portal/web/index.html

19 lines
417 B
HTML
Raw Normal View History

2023-03-04 23:19:54 -07:00
<!DOCTYPE html>
<html>
2023-03-11 08:54:24 -07:00
<head>
2023-03-11 13:43:48 -07:00
<title>Portal</title>
2023-03-11 08:54:24 -07:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-03-11 13:43:48 -07:00
<link rel="icon" href="portal.png">
<link rel="stylesheet" href="portal.css">
<script src="portal.mjs" type="module"></script>
2023-03-11 08:54:24 -07:00
</head>
<body>
<nav>
</nav>
<section id="app">
<iframe></iframe>
</section>
</body>
2023-03-04 23:19:54 -07:00
</html>