diff options
| author | Fuwn <[email protected]> | 2022-09-06 23:48:13 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-09-06 23:48:13 -0700 |
| commit | f793d07ebb2e4934f51e2a88ac338508736e3993 (patch) | |
| tree | ffc24ab9de7b9610969740e53feae9bdacf1b189 /src/index.html | |
| download | monkeytype-desktop-main.tar.xz monkeytype-desktop-main.zip | |
Diffstat (limited to 'src/index.html')
| -rw-r--r-- | src/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..08d55d1 --- /dev/null +++ b/src/index.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <link rel="stylesheet" href="style.css" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Tauri App</title> + <script type="module" src="/main.js" defer></script> + <style> + .logo.vanilla:hover { + filter: drop-shadow(0 0 2em #ffe21c); + } + </style> + </head> + + <body> + <div class="container"> + <h1>Welcome to Tauri!</h1> + + <div class="row"> + <a href="https://tauri.app" target="_blank"> + <img src="/assets/tauri.svg" class="logo tauri" alt="Tauri logo" /> + </a> + <a + href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" + target="_blank" + > + <img + src="/assets/javascript.svg" + class="logo vanilla" + alt="JavaScript logo" + /> + </a> + </div> + + <p>Click on the Tauri logo to learn more about the framework</p> + + <div class="row"> + <div> + <input id="greet-input" placeholder="Enter a name..." /> + <button type="button" onclick="greet()">Greet</button> + </div> + </div> + + <p id="greet-msg"></p> + </div> + </body> +</html> |