Skip to content
Snippets Groups Projects
Commit 3a4396f3 authored by SPTimmer's avatar SPTimmer
Browse files

seventh commit - minor updates

parent c85e5934
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -22,7 +22,7 @@
<section>
<h1>Web Book Quote Application</h1>
<form ACTION="./quote">
<p>Enter ISBN number: <input TYPE="NUMBER" NAME="isbn" VALUE=0></p>
<p><label for="isbn">Enter ISBN number:</label><input type="number" name="isbn" id="isbn" value=0></p>
<input TYPE="SUBMIT">
</form>
</section>
......
......@@ -23,23 +23,23 @@
<h1>Temperature Converter</h1>
<form ACTION="./temperature">
<p>
From&nbsp;
<select name="from">
<label for="from">From</label>&nbsp;
<select name="from" id="from">
<option value="K">K</option>
<option value="C">&deg;C</option>
<option value="R">R</option>
<option value="F">&deg;F</option>
</select>
&nbsp;to&nbsp;
<select name="to">
&nbsp;<label for="to">to</label>&nbsp;
<select name="to" id="to">
<option value="K">K</option>
<option value="C">&deg;C</option>
<option value="R">R</option>
<option value="F">&deg;F</option>
</select><br>
Value: <input TYPE="NUMBER" NAME="temp" STEP="any" value=0>
<label for="temp">Value:&nbsp;</label><input type="number" name="temp" id="temp" step="any" value=0>
</p>
<input TYPE="SUBMIT" value="Convert!">
<input type="submit" value="Convert!">
</form>
</section>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment