哪位大神能把这个给制作出来?
就当是练手吧
就当是练手吧
2016-11-23
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>登录</title>
</head>
<body>
<form method="post" action="">
<label for="account">账号</label>
<input type="text" name="account" id="account" />
<label for="password">密码</label>
<input type="password" name="password" id="password" />
<input type="submit" id="login" value="登录"/>
<span style="font-size:13px;color:gray;">忘记密码 | 免费注册</span>
<span style="font-size:13px;color:gray;margin-left:100px;">生意宝 | 生意社 | 交易中心 |</span>
<span style="font-size:13px;color:orange;">ChinaMedevice</span>
</form>
</body>
</html>
给你写了一个,不知道能不能帮到你。
源代码如下:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>登录</title>
</head>
<body>
<form method="post" action="">
<label for="account">账号</label>
<input type="text" name="account" id="account" />
<label for="password">密码</label>
<input type="password" name="password" id="password" />
<input type="submit" id="login" value="登录"/>
<span style="font-size:13px;color:gray">忘记密码 | 免费注册</span>
</form>
</body>
</html>
举报