-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
27 lines (27 loc) · 888 Bytes
/
main.html
File metadata and controls
27 lines (27 loc) · 888 Bytes
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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<a href="https://www.maths.tcd.ie/~lebed/Galperin.%20Playing%20pool%20with%20pi.pdf">
Check this out!
</a>
<style>
.redplaceholder::placeholder {
/*color: #b2cde0*/
color: red;
opacity: 70%;
}
</style>
</head>
<body>
<div id="mainDiv" class="p5Canvas">
</div>
<div id="input">
<button style="height: 57px" onclick="resetDraw()">Change Mass</button>
<input id="inputfield" type="text" placeholder="Enter text here" style="height: 50px; font-size: 16pt"/>
</div>
<script type="text/javascript" src="./p5.min.js"></script>
<script type="text/javascript" src="./square.js"></script>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>