2021-02-27 17:12:11 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2021-02-27 18:18:58 -05:00
|
|
|
<title>Prismarine Web Client</title>
|
2021-03-03 23:07:07 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2021-03-13 20:33:00 -05:00
|
|
|
<link rel="favicon" href="favicon.ico">
|
2021-03-20 21:21:44 -04:00
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
2021-03-20 21:31:45 -04:00
|
|
|
<meta name="description" content="Minecraft web client running in your browser">
|
|
|
|
<meta name="keywords" content="Minecraft, Web, Voxel, Javascript, PrismarineJS">
|
|
|
|
<meta name="author" content="PrismarineJS">
|
2021-03-22 04:14:54 -04:00
|
|
|
<meta name="theme-color" content="#349474">
|
2021-03-20 21:21:44 -04:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0'>
|
|
|
|
<meta property="og:title" content="Prismarine Web Client" />
|
|
|
|
<meta property="og:type" content="website" />
|
2023-04-06 03:22:15 -04:00
|
|
|
<meta property="og:url" content="https://prismarinejs.github.io/prismarine-web-client/" />
|
|
|
|
<meta property="og:image" content="https://prismarinejs.github.io/prismarine-web-client/favicon.png" />
|
2021-03-20 21:54:10 -04:00
|
|
|
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
|
2021-02-27 17:12:11 -05:00
|
|
|
</head>
|
2021-03-07 16:49:49 -05:00
|
|
|
<body>
|
2021-12-24 07:00:07 -05:00
|
|
|
<div id="ui-root">
|
|
|
|
<pmui-hud id="hud" style="display: none;"></pmui-hud>
|
|
|
|
<pmui-pausescreen id="pause-screen" style="display: none;"></pmui-pausescreen>
|
|
|
|
<pmui-loadingscreen id="loading-screen" style="display: none;"></pmui-loadingscreen>
|
|
|
|
<pmui-playscreen id="play-screen" style="display: none;"></pmui-playscreen>
|
|
|
|
<pmui-keybindsscreen id="keybinds-screen" style="display: none;"></pmui-keybindsscreen>
|
|
|
|
<pmui-optionsscreen id="options-screen" style="display: none;"></pmui-optionsscreen>
|
2022-03-08 09:46:50 -05:00
|
|
|
<pmui-titlescreen id="title-screen" style="display: none;"></pmui-titlescreen>
|
2021-12-24 07:00:07 -05:00
|
|
|
</div>
|
2021-02-27 17:12:11 -05:00
|
|
|
</body>
|
|
|
|
</html>
|