-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
21 lines (21 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>SCORMy Editor</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<link rel="stylesheet" type="text/css" href="node_modules/@smarthtmlelements/smart-elements-community/source/styles/smart.default.css" />
<link rel="stylesheet" type="text/css" href="node_modules/@smarthtmlelements/smart-elements-community/styles/demos.css" />
<link rel="stylesheet" type="text/css" href="node_modules/@smarthtmlelements/smart-elements-community/styles/common.css" />
<script src='main.js'></script>
</head>
<body>
<section id="content">
<button class="file-open" onclick="new_project()">New Project</button>
<button class="file-open" onclick="open_file_dialog()">Existing Project</button>
<input type="file" hidden accept="application/json" oninput="load_file(event)">
</section>
</body>
</html>