-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
29 lines (24 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rumblesheet.JS</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/styles/style.css" />
<link rel="stylesheet" href="assets/styles/variables.css" />
<link rel="stylesheet" href="assets/styles/ribbon.css" />
<link rel="stylesheet" href="assets/styles/icons.css" />
<link rel="stylesheet" href="assets/styles/main-container.css" />
<link rel="stylesheet" href="assets/styles/excel.css" />
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Open+Sans&family=Lato&family=Montserrat&family=Poppins&family=Inter&family=Lobster&display=swap" rel="stylesheet" crossorigin="anonymous">
</head>
<body>
<div id="sample"></div>
<script type="module">
import { Rumblesheet } from "./dist/rumblesheet.js";
const sheet = new Rumblesheet("sample");
</script>
</body>
</html>