Input type

  • Thread starter Luigi Donatello Asero
  • Start date
L

Luigi Donatello Asero

What is wrong with this piece of code?
It is on the page www.scaiecat-spa-gigi.com/sv/test.html

<td align="center"><form method="get" action="/cgi-bin/search.cgi">
<input type="text" size="30" name="keywords" maxlength="80"></type>
<input type="submit" value="S&ouml;k"></type> <input type="reset"
value="&Aring;terst&auml;ll"></type>
</form></td>
 
S

Steve Pugh

Luigi Donatello Asero said:
What is wrong with this piece of code?
<input type="text" size="30" name="keywords" maxlength="80"></type>

<input></type>

Should be <input /> or <input></input>

The validator would have pointed this out.

Steve
 
H

Hywel Jenkins

What is wrong with this piece of code?
It is on the page www.scaiecat-spa-gigi.com/sv/test.html

<td align="center"><form method="get" action="/cgi-bin/search.cgi">
<input type="text" size="30" name="keywords" maxlength="80"></type>
<input type="submit" value="S&ouml;k"></type> <input type="reset"
value="&Aring;terst&auml;ll"></type>
</form></td>
Where are you opening "type" nodes?
 
T

Toby A Inkster

<td align="center"><form method="get" action="/cgi-bin/search.cgi">
<input type="text" size="30" name="keywords" maxlength="80"></type>
<input type="submit" value="S&ouml;k"></type> <input type="reset"
value="&Aring;terst&auml;ll"></type>
</form></td>

Try:

<form method="get" action="/cgi-bin/search.cgi">
<p align="center">
<input type="text" size="30" name="keywords" maxlength="80">
<input type="submit" value="S&ouml;k">
<input type="reset" value="&Aring;terst&auml;ll">
</p>
</form>
 
T

Toby A Inkster

An invalid XML character (Unicode: 0x1b6972) was found in the value of
attribute "content".
What does that mean?

It doesn't like something in your <meta name="keywords" /> tag.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,801
Messages
2,569,658
Members
45,421
Latest member
DoreenCorn

Latest Threads

Top