index_rust_only.html (960B)
1 <!doctype html> 2 <html lang="en" data-theme="light"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 7 <meta name="Description" content="A Matrix Client written in Rust using WebAssembly."> 8 <link rel="dns-prefetch" href="//fonts.googleapis.com"> 9 <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin> 10 <link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> 11 <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> 12 <link href="style.css" rel="stylesheet"> 13 <title>Daydream</title> 14 </head> 15 <body> 16 17 <script type="module"> 18 import init from "./daydream.js" 19 init() 20 </script> 21 </body> 22 </html>