Help with html forms

stillDOLL

New Member
Messages
11
Reaction score
0
Points
0
i need help on how to make a HTML form!^^
Does anyone know? and if you do can you tell me please?
 

stillDOLL

New Member
Messages
11
Reaction score
0
Points
0
Thanks,I'll try to use the W3 schools website but I'm not quite sure how it works still.
 

freecrm

New Member
Messages
629
Reaction score
0
Points
0
This is about as basic as you can get but it gives you a start.

Code:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="form1" method="post" action="">
<p>
  <input type="text" name="textfield">
</p>
<p>
  <input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>

It has one plain text field and a submit button.
 

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
I say
1) W3Schools
2) Google
3) HTML book
 

hackking

New Member
Messages
43
Reaction score
0
Points
0
This is about as basic as you can get but it gives you a start.

Code:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="form1" method="post" action="">
<p>
  <input type="text" name="textfield">
</p>
<p>
  <input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>
It has one plain text field and a submit button.
good thanx
 
Top