-
Notifications
You must be signed in to change notification settings - Fork 0
/
furniture.html
34 lines (34 loc) · 1.2 KB
/
furniture.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
<html>
<head>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="application.js"></script>
<link rel="stylesheet" type="text/css" href="application.css">
<title>Arrange Your Furniture!</title>
</head>
<body>
<header>
<h1>Furniture Mover!</h1>
</header>
<div class="container">
<form id="roomSize">
What size is your room?
<br>Width: <input type="number" step="any" name="width">
<br>Length: <input type="number" step="any" name="length">
<br><input type="Submit" value="Submit">
</form>
<form id="addFurniture">
Add a piece of furniture!<br>
Name: <input type="text" name="name">
<br>Width: <input type="number" step="any" name="furnWidth">
<br>Length: <input type="number" step="any" name="furnLength">
<br><input type="Submit" value="Submit">
</form>
<form id="deleteFurniture">
Delete a piece of furniture!<br>
Name: <input type="text" name="delName">
<br><input type="Submit" value="Submit">
</form>
</div>
</body>
</html>