And in html heres what the border would look like
Now i am going to show you how to make a drop down list, the first thing you need to know is it starts with the exact same <form action=""> tag and then it is followed by a <select name="items">
Except the items part can be change to whatever you drop down list is about. The just add
<option value="typeofitem>typeofitem</option> you keep doing see for different options in the drop down list, except change the typeofitem to the actual item in the list. Now once you added all your options end it with a </select> then under that a </form> and then you are done. Heres an example of a drop down list i made on cars to show you quickly and under it will be what it looks like in html:
<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat" selected>Fiat</option>
<option value="audi">Audi</option>
</select>
</form>
I have a car
Then under this you can put a submit button, but the only problem is e result needs to be sent somewhere well you just need to type the following except change html_form_action.asp part to the name of the page you want it sent to.
<form name="input" action="html_form_action.asp" method="get">
Thankyou for checking out this lesson he next lesson will be posted in a few days