Blogger Information
Blog 27
fans 0
comment 0
visits 22417
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
利用基础知识做个登陆框
不乖的博客
Original
559 people have browsed it
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style>
			*{
				margin: 0;
				padding: 0;
			}
			body{
				background: linear-gradient(to right,red,blue);
			}
			div{
				width: 400px;
			    height: 350px;
			    margin: 200px auto;
				background:rgba(102,174,255,0.5);
				border-radius: 20px;
				text-align: center;
			}
			img{
				width: 80px;
				height: 80px;
				border-radius: 50%;
				margin: 30px auto;
			}
			input{
				width:300px;
				height: 35px;
				padding-left: 10px;
				border-radius: 5px;
				border: none;
				margin-bottom: 20px;
			}
			button{
				width:200px;
				height: 35px;
				border: none;
				background: #7F007F;
				color: white;
				border-radius: 5px;
			}
		</style>
	</head>
	<body>
		<div>
			<form action="">
				<img src="static/images/3.jpeg"><br/>
				<input type="text" placeholder="请输入用户名"/><br/>
				<input type="password" placeholder="请输入密码"/><br/>
				<button>登陆</button>
			</form>
		</div>
	</body>
</html>


Correction status:qualified

Teacher's comments:作业名称记得加上是哪天的课程
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post