22 lines
663 B
HTML
22 lines
663 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>rqbit web</title>
|
|
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
|
|
<!-- Include Bootstrap CSS -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
|
|
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<script type="module" crossorigin src="assets/index.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
</body>
|
|
</html>
|