-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (30 loc) · 1.24 KB
/
index.html
File metadata and controls
executable file
·30 lines (30 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.412.0.min.js"></script>
<link rel="stylesheet" href="./styles.css" type="text/css"/>
<script src="https://static.trymason.com/mason@latest.js"></script>
<title>Mason Quickstart - VanillaJS</title>
</head>
<body>
<div class="bg-gray pa3 w-100 min-vh-100 border-box" >
<div class="w-100 pa3">
<p class="h1">Mason starter kit</p>
<p class="h2">This project is a simple bare-bones application that's set up for you to deploy your Mason features into.</p>
<p class="h2">This is just custom HTML. Mason features live right alongside any of your frontend custom code.</p>
</div>
<div class="w-100 bg-dark flex items-center justify-center pa3 border-box">
<mason-canvas data-id="5c8a9b48b8c8d600032644ad"></mason-canvas>
</div>
</div>
<script type="text/javascript">
window.masonAsyncInit = function() {
Mason({
apiKey: 'F2iH1kKvAY02h9aKMKEzOZ8tEb08jmiqVMoggpZQhOs=', // Replace this with your API key
projectId: '5c19c9430d278900033d9b70', // Replace this with your Project ID
});
};
</script>
</body>
</html>