forked from constructorlabs/debugging-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtower.html
More file actions
31 lines (31 loc) · 730 Bytes
/
tower.html
File metadata and controls
31 lines (31 loc) · 730 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Sheila's Debugging practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
h1 {
font-size: 1.5em
}
input, button {
min-width: 72px;
min-height: 36px;
border: 1px solid grey;
}
label, input, button {
display: block;
}
input {
margin-bottom: 1em;
}
</style>
</head>
<body>
<h1>Sheila's Debugging practice - Tower </h1>
<label for="num1">Number 1</label>
<input placeholder="Number 1" id="num1">
<button>Create Tower</button>
<p></p>
<script src="tower.js"></script>
</body>
</html>