19 lines
635 B
HTML
19 lines
635 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/earth.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Geo Words</title>
|
|
<!-- Meta tags for social media -->
|
|
<meta property="og:title" content="Geo Words" />
|
|
<meta property="og:description" content="A geographic word app." />
|
|
<meta property="og:image" content="/earth.png" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|