Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter31 : form 본문

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>

'WEB.CSS' 카테고리의 다른 글

chapter33 : form  (0) 2023.05.19
chapter32 : form  (0) 2023.05.19
chapter30 : table  (0) 2023.05.18
chapter29 : pseudo_class  (0) 2023.05.18
chapter28 : pseudo_class  (0) 2023.05.18