-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
29 lines (29 loc) · 875 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>16 Bit Grayscale PNG Heightmap Generator for Unreal Engine</title>
<script type="module" defer>
import { polyfillCountryFlagEmojis } from "https://cdn.skypack.dev/country-flag-emoji-polyfill";
polyfillCountryFlagEmojis();
</script>
<link rel="stylesheet" href="public/dist/css/main.css">
</head>
<body>
<main>
<section class="container">
<div class="columns">
<div class="column">
<div id="map">
</div>
</div>
</div>
<div id="app">
</div>
</section>
</main>
<script type="text/javascript" src="public/dist/js/main.js"></script>
</body>
</html>