Your select input needs to have the name set. Consider:
<select name="activelevel">
<option value='1v'>Little or no Excercise / Desk job</option>
<option value='2v'>Light exercise / Workout 1-3 days/week</option>
<option value='3v'>Moderate exercise / Workout 3-5 days/week</option>
<option value='4v'>Heavy exercise / Workout 6-7 days/week</option>
<option value='5v'>Very heavy exercise / Physical job / Workout 2 times a day</option>
</select>
You can set the answer to be bold by setting the font-weight style of the input box.
<input type='text' style="width: 50px;font-weight:bold;" value='<?php echo $answer?>' />
Your table border is set by the file style.css to:
table {
border-collapse: collapse;
border-spacing: 0;
}