<!DOCTYPE html>
<html>

<head>
  <style>
    input,
    label {
      font: inherit
    }
    
    [type=submit] {
      float: right
    }
    
    ;
  </style>

</head>

<body>
  <form id='main' method='post' action='http://httpbin.org/post'>
    <fieldset>
      <legend>Question #82</legend>
      <p>Using radio buttons that share the same name attribute ensures that only one of them can be checked</p>
      <label>True
        <input type='radio' name='Q82' value='true'>
      </label>
      <label>False
        <input type='radio' name='Q82' value='false'>
      </label>
    </fieldset>
        <fieldset>
      <legend>Question #83</legend>
      <p>If you wish to set a default, use the checked attribute. ex. checked='false' (see the radio buttons below)</p>
      <label>True
        <input type='radio' name='Q83' value='true'>
      </label>
      <label>False
        <input type='radio' name='Q83' value='false' checked='true'>
      </label>
    </fieldset>
    <input type='submit'>
  </form>
</body>

</html>
// Code goes here

/* Styles go here */