<aside> ✏️ 오늘 요약
</aside>
<h1 style="color:rgb(137, 71, 71); text-align: center;">Login</h1>
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>LOGIN</title>
<style>
h1 {
color: rgb(137, 71, 71);
text-align: center;
}
.login_inputs {
font-size: 25px;
}
#btn_login {
font-size: 30px;
width: 100px;
height: 30px;
}
</style>
</head>
<body>
<h1>Login</h1>
<form>
ID : <input class="login_inputs" type="text">
<br />
PW : <input class="login_inputs" type="password">
<br />
<input id="btn_login" type="button" value="login">
</form>
</body>
</html>
<!-- login.html -->
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>LOGIN</title>
<link rel="stylesheet" href="login.css" />
</head>
// login.css
h1 {
color: rgb(137, 71, 71);
text-align: center;
}
.login_inputs {
font-size: 25px;
}
#btn_login {
font-size: 30px;
width: 100px;
height: 30px;
}
*HTML 태그 한쌍을 우리는 element 라고 부른다.