Saturday, November 23, 2013

HTML

HTML type name here:
Do you know how to program?
Yes No
what do yo know:
Python Java Javascript

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

Example

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:

Example

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.