How can i make a text box using HTML?

  • Thread starter Thread starter apotampkin
  • Start date Start date
A

apotampkin

Guest
<html>
<title>
Creating a text box using HTML
</title>

<body>
<form>
<input type="text">
</form>
</body>
</html>
__________________________________
Good luck. =)
 
Im looking for a text box that will use the codes im using in the text and actually display them. so far ive only found boxes that display the text and html. What i'm looking for is something to put the text in so that it would be easier to read with my new myspace background and allow the text and codes im using to go through even with my current settings.
I'm not exactly sure what the first person just gave me but it didnt work.
 
<html>
<body>

<form method="post" action"#">
<input type="text" name="codes" id="codes" />
<label>Enter Codes Here:</label>
<input type="submit" value="Submit" name="submit" id="submit" />
</form>

-Billy
 
Back
Top