mirror of https://github.com/CesiumGS/cesium.git
34 lines
1008 B
HTML
34 lines
1008 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sandcastle | CesiumJS</title>
|
|
<style>
|
|
/* Load fonts for itwin-ui */
|
|
@font-face {
|
|
font-family: InterVariable;
|
|
font-style: normal;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
src: url("/fonts/InterVariable.woff2") format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: InterVariable;
|
|
font-style: italic;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
src: url("/fonts/InterVariable-Italic.woff2") format("woff2");
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="/styles/stratakit-ext-tokens.css" />
|
|
<link rel="stylesheet" href="/fonts/monaco-fonts.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app-container"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|