Introduction to HTML/XHTML

Forms

<form action="http://www.google.com/search" method="get">
 <p>
    Query:
    <input type="text" name="q" id="query"/><br/>
    <input type="radio" name="lr" value="lang_en"/>English<br/>
    <input type="radio" name="lr" value="lang_es"/>Spanish<br/>
    <input type="radio" name="lr" value="lang_ja"/>Japanese<br/>
    <input type="submit" value="Send"/> <input type="reset"/>
    </p>
 </form>

Query:
English
Spanish
Japanese


José M. Vidal .

10 of 19