HTML表单(Forms)

<form action="demo_form.php" method="post/get">

<input type="text" name="email" size="40" maxlength="50">

 <input type="password">

 <input type="checkbox" checked="checked">

 <input type="radio" checked="checked">

 <input type="submit" value="Send">

 <input type="reset">

 <input type="hidden">

 <select>

 <option>苹果</option>

 <option selected="selected">香蕉</option>

 <option>樱桃</option>

 </select>

<textarea name="comment" rows="60" cols="20"></textarea>

 </form>




分享给朋友:

相关文章

HTML标题实例代码3年前 (2021-11-07)
HTML有什么特点?3年前 (2021-11-02)
HTML字符实体3年前 (2021-11-03)
HTML文档的后缀名3年前 (2021-11-02)
HTML CSS3年前 (2021-11-02)