-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdemo.html
51 lines (39 loc) · 921 Bytes
/
gdemo.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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>GDemo</title>
</head>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro">
<style>
canvas, h1, h3 {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
width: 640px;
}
h1 {
margin-top: 2rem;
text-align: center;
font-family: Source Sans Pro, Roboto, sans-serif;
}
h3 {
text-align: center;
font-family: Roboto, sans-serif;
font-weight: 300;
}
</style>
<body>
<h1>The GDemo App Web Page</h1>
<script src="gdemo.js"></script>
<h3>Note: Make sure that you have compiled your project first (using Build
Project)</h3>
<h3>
Note: You will not see the red square or the blue
circle until you finish Task 0.
</h3>
<h3>Refreshing this web page should re-run your program.</h3>
<hr>
<address></address>
</body> </html>