-
Notifications
You must be signed in to change notification settings - Fork 0
/
myQuiz5.html
45 lines (42 loc) · 1.47 KB
/
myQuiz5.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>연습문제 5</title>
</head>
<body>
<h1>프런트엔드 개발자 지원서</h1>
<p>HTML, CSS, JavaScript에 대한 이해와 경험이 있는 분을 찾습니다.</p>
<hr>
<from>
<table>
<tr>
<th><label for="name">이름</label></th>
<td><input id="name" type="text" size="20" autofocus required placeholder="공백없이 입력하세요."></td>
</tr>
<tr>
<th><label for="stel">휴대폰</label></th>
<td><input id="stel" type="tel" size="20"></td>
</tr>
<tr>
<th><label for="semail">이메일</label></th>
<td><input id="semail" type="email" size="20"></td>
</tr>
</table>
<h3>지원 분야</h3>
<ul>
<li><label><input type="radio" name="field" value="an">웹 퍼블리싱</label></li>
<li><label><input type="radio" name="field" value="pd">웹 어플리케이션 개발</label></li>
<li><label><input type="radio" name="field" value="eng">개발환경개선</label></li>
</ul>
<h3>지원 동기</h3>
<textarea cols="50" rows="5" placeholder="본사 지원 동기를 간단히 써 주세요"></textarea>
<div>
<button type="submit">접수하기</button>
<button type="reset">다시 쓰기</button>
</div>
</from>
</body>
</html>