欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html制作登录表单

程序员文章站 2022-04-21 16:21:57
...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>用表单集制作登录表单</title>
</head>
<body>
<!-- 用表单控件分组 <fieldset>,了解即可,实际工作中用得极少 -->
<form action="" method="post">
<fieldset>
<legend>用户登录</legend>
<p><label>邮箱:<input type="email" name="email" placeholder="example@mail.com"></label></p>
<p><label>密码:<input type="email" name="email" placeholder="Password"></label></p>
<hr width="90%" color="lightskyblue">
<p><button type="submit" name="submit">立即登录</button></p>
</fieldset>
</form>
</body>
</html>

以上就是html制作登录表单的详细内容,更多请关注其它相关文章!