21 lines
440 B
HTML
21 lines
440 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Quill</title>
|
|
<link rel="icon" href="">
|
|
<link rel="stylesheet" href="">
|
|
<script src="../index.js"></script>
|
|
<script src="test.js" type="module"></script>
|
|
<script type="module">
|
|
import Home from "./Pages/home.js";
|
|
|
|
window.routes = {
|
|
"/Test": Home
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="background: rgb(242, 194, 147)">
|
|
|
|
</body>
|
|
</html>
|