mirror of
https://github.com/falk-werner/webfuse-example
synced 2024-10-27 20:44:09 +00:00
18 lines
372 B
HTML
18 lines
372 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>WebFuse Example</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet" type="text/css" href="style/main.css">
|
||
|
<script type="module" src="js/startup.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="page">
|
||
|
<div class="window">
|
||
|
<div class="title">Connection</div>
|
||
|
<div id="connection"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|