-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 863 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
<html>
<head>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script> -->
<script src="lib/p5.min.js"></script>
<script src="src/loadData.js"></script>
<script src="src/viewmodel.js"></script>
<script src="src/render.js"></script>
<style>
body {
margin: 0;
}
button {
border: 1px solid #aabbaa;
background-color: #f8f8ff;
border-radius: 5px;
}
button:active {
border: 1px solid #aabbaa;
background-color: #f0f0f8;
outline: none;
}
button:focus {
outline: none;
}
select {
border: 1px solid #aabbaa;
background-color: #f8f8ff;
border-radius: 5px;
}
select:focus {
outline: none;
}
</style>
</head>
<body>
<main></main>
</body>
</html>