-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightbulb.html
47 lines (37 loc) · 852 Bytes
/
lightbulb.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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>Lightbulb</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 Lightbulb App Web Page</h1>
<script src="lightbulb.js"></script>
<h3>
Note: This application will not work until you have
completed the checkbox portion of Task 5.
</h3>
<h3>Refreshing this web page should re-run your program.</h3>
<hr>
<address></address>
</body> </html>