WEB.CSS
chapter31 : form
GAWON
2023. 5. 19. 09:11
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
div ul {
list-style-type: none;
}
.d2 {
border: 1px solid black;
}
</style>
</head>
<body>
<div class="d1">
<ul>
<li>
<a style="color: red; font-weight: bold;">아이디</a>
</li>
<li>
<input type="text" style="width: 100px;" >
</li>
<br>
<li>
<a style="color: red; font-weight: bold;">비밀번호</a>
</li>
<li>
<input type="text" style="width: 400px;" >
</li>
</ul>
</div>
<hr>
<div class="d2">
<ul>
<li>
<a style="font-weight: bold;">나이</a>
</li>
<li>
<input type="text" style="width: 200px;" >
</li>
<br>
<li>
<a style="font-weight: bold;">이메일</a>
</li>
<li>
<input type="text" style="width: 200px;" >
</li>
</ul>
</div>
</body>
</html>