-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckpoints.html
More file actions
23 lines (22 loc) · 1.25 KB
/
checkpoints.html
File metadata and controls
23 lines (22 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- DON'T EDIT THE CODE IN THIS FILE -->
<!DOCTYPE html>
<html>
<script src="example1.js"></script>
<script src="example2.js"></script>
<script src="example3.js"></script>
<script src="example4.js"></script>
<div style="margin-top: 250px">
<div style="width:150px; height:150px; border:3px solid #5C68B0; text-align: center; margin: 10px; float: right; margin-right: 100px;">
<button onclick="checkPoint4()" style="margin-top: 60px;">Checkpoint 4</button>
</div>
<div style="width:150px; height:150px; border:3px solid #5C68B0; text-align: center; margin: 10px; float: right; margin-right: 100px;">
<button onclick="checkPoint3()" style="margin-top: 60px;">Checkpoint 3</button>
</div>
<div style="width:150px; height:150px; border:3px solid #5C68B0; text-align: center; margin: 10px; float: right; margin-right: 100px;">
<button onclick="checkPoint2()" style="margin-top: 60px;">Checkpoint 2</button>
</div>
<div style="width:150px; height:150px; border:3px solid #5C68B0; text-align: center; margin: 10px; float: right; margin-right: 100px;">
<button onclick="checkPoint1()" style="margin-top: 60px;">Checkpoint 1</button>
</div>
</div>
</html>