언어/HTML&CSS&JAVA Script
HTML&CSS
NIGHT_LOVE
2020. 4. 25. 13:31
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<!doctype html>
<html>
<head>
<title>Register Form</title>
<meta charset="utf-8">
<style type="text/css">
body {
background-color: green;
}
input {
background-color: blue;
}
.myclass {
color: yellow;
}
input[type="password"] {
color: white;
}
</style>
</head>
<body>
<h2>회원가입</h2>
<p/>
<table border=0>
<tr>
<td>이름 :</td>
<td><input class="myclass" type="text" placeholder="이름을 입력하세요."></td>
</tr>
<tr>
<td>ID :</td>
<td><input class="myclass" type="text" size="30" maxlength="8" value="test"></td>
</tr>
<tr>
<td>PW :</td>
<td><input type="password"></td>
</tr>
<tr>
<td>PW확인 :</td>
<td><input type="password"></td>
</tr>
<tr>
<td>이메일 :</td>
<td><input type="mail"></td>
</tr>
<tr>
<td>성별 :</td>
<td><input type="radio" name="gender">남자
<input type="radio" name="gender">여자
<input type="radio" name="gender">그외</td>
</tr>
<tr>
<td>전화번호 :</td>
<td><input type="text"></td>
</tr>
<tr>
<td>홈페이지 :</td>
<td><input type="text"></td>
</tr>
<tr>
<td>생일 :</td>
<td><input type="date"></td>
</tr>
<tr>
<td>좋아하는 색깔 :</td>
<td><input type="color"></td>
</tr>
<tr>
<td>관심분야 :</td>
<td><input type="checkbox">경제
<input type="checkbox">IT
<input type="checkbox">사회
<input type="checkbox">과학
<input type="checkbox">음악
<input type="checkbox">미술 </td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="확인">
<input type="reset" value="취소">
</td>
</tr>
</table>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |