20 lines
576 B
HTML
20 lines
576 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Runway</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<base data-trunk-public-url />
|
|
<link data-trunk rel="css" href="styles.css">
|
|
<link data-trunk rel="copy-file" href="styles/google.css">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
console.log("HTML fully loaded, waiting for WASM...");
|
|
window.addEventListener('TrunkApplicationStarted', () => {
|
|
console.log("Trunk application started successfully!");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|