Skip to content

Commit f7ea030

Browse files
committed
exercises and studio for user input
1 parent 4736428 commit f7ea030

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Rocket Simulation</title>
6+
<style>
7+
label { display: block; margin-bottom: 7px;}
8+
</style>
9+
</head>
10+
<body>
11+
<!-- TODO: add form here -->
12+
13+
14+
<p>WARNING: This ONLY works in <b>replit</b> if this "result" page is opened in its own window. Click the icon that shows a box with an arrow coming out of it.
15+
</p>
16+
</body>
17+
18+
</html>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//Code Your Solution Below
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*/ Code Your Solution Below /*/
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!doctype html>
2+
3+
<head>
4+
<meta charset="utf-8">
5+
<script>
6+
// TODO: create a handler
7+
window.addEventListener("load", function(){
8+
// TODO: register the handler
9+
});
10+
</script>
11+
</head>
12+
13+
<body>
14+
15+
<form id="searchForm">
16+
<!-- TODO: add form elements -->
17+
</form>
18+
19+
</body>

0 commit comments

Comments
 (0)