I have the following code and would like to separate the following items about 10 inches apart from each other. I am creating a form where a user are able to read their inputs. Here is How I would like for it to be: Name:.......................... TEXTBOX (Without the periods)
<body>
<lable>Name:</label> <input type="text" name="name" value="<?php echo $name;?>">
<lable>
<p>E-mail:
</label>
<input type="text" name="email" value="<?php echo $email;?>">
</p>
<lable>
Website:</label> <input type="text" name="website" value="<?php echo $website;?>">
<lable>
<p> </p>
<lable>
Hello Gender:
<input type="radio" name="gender"
<?php if (isset($gender) && $gender=="female") echo "checked";?>
value="female">Female
<input type="radio" name="gender"
<?php if (isset($gender) && $gender=="male") echo "checked";?>value="male">Male
</body>
</html>