24 lines
605 B
HTML
24 lines
605 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Hyperia | Application</title>
|
|
<link rel="stylesheet" href="_/code/shared.css">
|
|
<link rel="icon" href="_/icons/logo.svg">
|
|
<script src="_/code/util.js"></script>
|
|
<link rel="stylesheet" href="index.css">
|
|
<script type="module">
|
|
import NavBar from "./components/NavBar.js"
|
|
import Questionnaire from "./components/Questionnaire.js"
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<nav-bar></nav-bar>
|
|
|
|
<questionnaire-></questionnaire->
|
|
|
|
<div style="position: fixed; bottom: 2vh; left: 1vw">
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|