css 디자인 로그인 상자

로그인 상자는 대부분의 사이트의 중요한 구성 부분으로 사용자 체험에 큰 영향을 미친다.약간의 시간을 들여 스스로 로그인 상자를 설계했다.
효과는 다음과 같습니다.
유일하게 쓰이는 소재는 Margot Fette 글꼴이다.(사용자 정의 글꼴은 css3 특성 중 하나)
코드는 다음과 같습니다.
<html>
	<head>
		<style>
			@font-face
			{ 
				font-family: Margot_Fette;
				src: url('Margot_Fette.ttf');
			}
			#login_panel
			{
				margin: auto;
				margin-top: 100px;
				width: 400px;
				background-color: rgb(147, 224, 255);
				text-align: center;
			}
			#login_title
			{
				background-color: rgb(92, 167, 186);
				padding: 10px;
				margin-bottom: 15px;
				font-family: Margot_Fette;
				font-size: 30px;
				line-height: 30px;
				color: white;
			}
			input
			{
				margin: 20px;
			}
			label
			{
				font-family: Margot_Fette;
				color: rgb(92, 167, 186);
			}
			#submit_button
			{
				width: 300px;
				height: 50px;
				font-family: Margot_Fette;
				font-size: 30px;
				background-color: rgb(255, 66, 93);
				color: white;
				border: 2px solid rgb(92, 167, 186);
			}
		</style>
	</head>
	<body>
		<div id = "login_panel">
			<div id = "login_title">
				Member Login
			</div>
			<form method = "post">
				<label>Username</label>
				<input type="text" name="name" />
				</br>
				<label>Password</label>
				<input type="password" name="name" />
				</br>
				<input id = 'submit_button' type = "submit" value = "Sign in" />
			</form>
		</div>
	</body>
</html>

좋은 웹페이지 즐겨찾기