Do you know how to program?
what do yo know:
Comments
I know what you are thinking. How in the world did I do this. Well, I'll tell you. There is something called HTML. HTML is a programming language that allows you to make websites. To make a paragraph you do <p> type anything you want </p>. To do a ordered list you do:
<ol>
<p> type anything </p>
<p> type anything </p>
<p> type anything </p>
<ol>
Next we'll talk about radio buttons but first I need to show you one
to do one you do
<form>
<imput name="anything" type="radio" value="anything">Example
</form>
Also to do a text area you do:
<br/>
<textarea></textarea>
It should turn up like this:
To do checkboxes you do:
<form>
<input type="checkbox" name="anything" value="anything">Example
</form>
It should turn up like this:
Last but not least this is how you do a name box:
<form>
<input name="anything" type="text" value="what you want to say in the box">
</form>
to get
I know I explained a lot but there's still a lot more like: emphasize.