今日学习内容
登陆界面
<%--Created by IntelliJ IDEA.
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<meta charset="UTF-8">
<title>登录</title>
<style>
.d1 {
text-align: center;
}
label {
font-size: large;
}
input {
margin-top: 10px;
border-radius: 10px;
padding-left: 10px;
margin-bottom: 10px;
}
.submit {
border-radius: 0%;
width: 90px;
height: auto;
}
</style>
</head>
<body>
<form id="login-form">
<div class="d1">
<h1>登录到界面</h1>
<hr>
<label for="username">用户名</label>
<input type="text" name="username" id="username" >
<br>
<label for="password">密码</label>
<input type="password" name="password" id="password">
<br>
<input type="submit" value="登录">
<script src="script.js"></script> </div>
</form>
</body>
</html> 标签:margin,11.6,radius,File,10px,border From: https://www.cnblogs.com/zjm921/p/17908583.html