常用的html语法

<!DOCTYPE html>
<html>
<head>
<title>form.html</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

</head>

<body>
<form action="/servletdemo/servlet/Request2" method="post">
用户名:<input type="text" name="username"><br/>
密码:<input type="password" name="password"><br/>
性别:
<input type="radio" name="gender" value="mail">男
<input type="radio" name="gender" value="female">女<br/>

所在地:
<select name="city">
<option value="beijing">北京</option>
<option value="shanghai">上海</option>
<option value="guangdong">广东</option>

</select>
<br/>
爱好:
<input type="checkbox" name="likes" value="sing">唱歌
<input type="checkbox" name="likes" value="dance">跳舞<br/>
简介:
<textarea rows="10" cols="10" name="description"></textarea>
<br/>
大头照:
<input type="file" name="photo"><br/>
<input type="hidden" name="Id" value="123"><br/>

<input type="submit" value="提交"><br/>

</form>
</body>
</html>

posted @ 2017-04-01 11:54  贱贱的小帅哥  阅读(91)  评论(0编辑  收藏  举报