아이디, 비밀번호를 입력할 수 있는 칸을 만들어보자!
=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
input[type="text"] {
border: 3px solid blue;
}
input[type="password"] {
border: 1px solid red;
}
</style>
</head>
<body>
<form>
<input type="text"> <br>
<input type="password">
</form>
</body>
</html>
비밀번호는 * 로 표시됨!

hover 를 사용하게 되면 마우스에 올렸을 때 선언해준 색깔에 맞추어 색이 들어옴
=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
h1 {
color: blue;
}
h1:hover {
color: red;
}
</style>
</head>
<body>
<h1>Hello</h1>
</body>
</html>
마우스를 글자에 안 올렸을 때

마우스를 글자에 올렸을 때
