-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
21 lines (21 loc) · 976 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<meta charset="UTF-8" />
<!-- PLEASE NO CHANGES BELOW THIS LINE (UNTIL I SAY SO) -->
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<!-- uncomment lines below to include extra p5 libraries -->
<script language="javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" src="libraries/p5.sound.js"></script>
<!-- OK, YOU CAN MAKE CHANGES BELOW THIS LINE AGAIN -->
<!-- <style> body {padding: 0; margin: 0;} </style>-->
<!-- this line removes any default padding and style. you might only need one of these values set. -->
<script language="javascript" type="text/javascript" src="Vehicle.js"></script>
<script language="javascript" type="text/javascript" src="steering.js"></script>
</head>
<body>
<p>Text :
<input id="text" /><input id="submit" value="Change Text" type="submit" />
<input id="rand" type="checkbox">Randomize</input>
</p>
</body>
</html>