-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.sound.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/brython-dev/brython/master/www/src/brython.js"></script>
<script src="https://cdn.rawgit.com/brython-dev/brython/master/www/src/brython_stdlib.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Jaunel Deans - Lab#1 Smile</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body onload="brython(1)">
<script type="text/python" src="main.py"></script> <!--It links the main.py file to the html file-->
<div id="Heading">
<h1>Jaunel Deans</h1>
<h2>Lab#1 Smile</h2>
<h3>Date: Dec 1, 2023</h3>
</div>
<div id="explain">
<p>This is where you can draw to you heart's content. Click the screen to restart the drawing. </p>
</div>
</body>
</html>