-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<title>hello-wasm example</title>
<style>
html, body {
height: 100%;
width: 100%;
display: flex;
}
* {
padding: 0;
margin: 0;
width: fit-content;
height: fit-content;
}
div {
display: flex;
}
body {
/*background-color: red;*/
/*justify-content: space-between;*/
/*align-items: center;*/
/*flex-direction: column;*/
}
.child {
width: 500px;
height: 200px;
background-color: white;
flex-direction: row;
justify-content: center;
/*align-items: center;*/
}
.child2 {
background-color: white;
flex-direction: column;
}
.item {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<!--<div class="child">-->
<!-- <p>Child1</p>-->
<!-- <div class="child2">-->
<!-- <p class="item">Child1</p>-->
<!-- <p class="item">Child2</p>-->
<!-- <p class="item">Child3</p>-->
<!-- </div>-->
<!-- <p>Child3</p>-->
<!--</div>-->
<!--<div class="child">-->
<!-- <p>Child1</p>-->
<!-- <div class="child2">-->
<!-- <p class="item">Child1</p>-->
<!-- <p class="item">Child2</p>-->
<!-- <p class="item">Child3</p>-->
<!-- </div>-->
<!-- <p>Child3</p>-->
<!--</div>-->
<script type="module">
import init, {main} from "./pkg/ui.js";
init().then(() => {
main();
});
</script>
</body>
</html>