Code
<!DOCTYPE html>
<html>
  <head>
    <title>Wikitechy label tag</title>
  </head>
  <body>
    <h2>Wikitechy Tutorials</h2>
    <form action="#" onsubmit="alert('Submitted!');return false;">
      <input type="radio" name="tutorial" id="php">
      <label for="php"> Wikitechy PHP  </label><br>
      <input type="radio" name="tutorial" id="html">
      <label for="html"> Wikitechy HTML </label><br>
      <input type="radio" name="tutorial" id="css">
      <label for="css"> Wikitechy CSS </label><br><br>
      <input type="submit" value="Submit">
    </form>
  </body>
</html>



Result