16 lines
545 B
HTML
16 lines
545 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Rhai Worker UI</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link data-trunk rel="css" href="styles.css" />
|
|
<!-- Trunk will inject a script tag here for the WASM loader -->
|
|
</head>
|
|
<body>
|
|
<!-- The Yew app will be rendered here -->
|
|
</body>
|
|
</html>
|