-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
45 lines (40 loc) · 2.26 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<title>Underbore - a shallow geosteering simulation game</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script> -->
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- preview meta fields -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Underbore - a shallow geosteering simulation game" />
<meta property="og:image" content="assets/preview-crop-small.jpg" />
<!-- twitter-specific meta fields -->
<!-- <meta name="twitter:card" content="summary_large_image" /> -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Underbore - a shallow geosteering simulation game" />
<!-- optional twitter -->
<meta name="twitter:site" content="@e_book_worm" />
<!-- <meta name="twitter:image" content="https://al-digital.no/Directional-Boring/assets/preview-down-crop-square-narrow.png" /> -->
<meta name="twitter:image:src" content="https://al-digital.no/Directional-Boring/assets/preview-down-crop-square-narrow.png" />
<meta name="twitter:image:alt" content="A screenshot from the game with the title UNDERBORE spelled using a well trajectory" />
<meta name="twitter:description" content="Play online and challenge your friends." />
<!-- end of twitter -->
<!-- auto-generated code for icons -->
<!-- to change use https://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<link rel="manifest" href="icons/site.webmanifest">
<link rel="mask-icon" href="icons/safari-pinned-tab.svg" color="#61c2ef">
<link rel="shortcut icon" href="icons/favicon.ico">
<meta name="msapplication-TileColor" content="#61c2ef">
<meta name="msapplication-config" content="icons/browserconfig.xml">
<meta name="theme-color" content="#61c2ef">
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>