-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 861 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Grid</title>
<script type="module" src="./main.js"></script>
<style>
body {
font-family: "Open Sans", sans-serif;
line-height: 1.25;
}
.root {
text-align: center;
}
.demoTitle {
text-align: center;
padding: 20px;
}
.demoTitle {
font-size: 25px;
font-weight: bold;
color: chocolate;
}
</style>
</head>
<body>
<noscript>Please enable JavaScript to use this website.</noscript>
<div class="demoTitle">
<span class="title">
Dynamic Grid Example
</span>
</div>
<div id="root" class="root"></div>
</body>
</html>