Don't understand a single thing about putting the following together:
Here's what I was able to put together:
RADIO BUTTON: FRESHMAN, JUNIOR, SOPHMORE, ETC.
<form>
<input type="radio" name="Grade" value="Freshman"> Freshman
<br>
<input type="radio" name="Grade" value="Junior"> Junior
<br>
<input type="radio" name="Grade" value="Sophomore"> Sophomore
<br>
<input type="radio" name="Grade" value="Senior"> Senior
</form>
SELECTION LIST
<wml>
<card title="What shows do you like?">
<p>
<select>
<option value="Supernatural">Supernatural</option>
<option value=”Smallville">Smallville</option>
<option value="Prison Break">Prison Break</option>
<option value="Heroes">Heroes</option>
</select>
</p>
</card>
</wml>
CELSIUS AND FARENHEIT
<html>
<head>
<script type="text/javascript">
function convert(degree)
{
if (degree=="C")
{
F=document.getElementById("c").value * 9 / 5 + 32
document.getElementById("f").value=Math.round(F)
}
else
{
C=(document.getElementById("f").value -32) * 5 / 9
document.getElementById("c").value=Math.round(C)
}
}
</script>
</head>
<body>
<p></p><b>Insert a number into one of the input fields below:</b></p>
<form>
<input id="c" name="c" onkeyup="convert('C')"> degrees Celsius<br />
equals<br />
<input id="f" name="f" onkeyup="convert('F')"> degrees Fahrenheit
</form>
<p>Note that the <b>Math.round()</b> method is used, so that the result will be returned as an integer.</p>
</body>
</html>