Showing
5 changed files
with
193 additions
and
0 deletions
bigbang.jpg
0 → 100644
70.9 KB
ex02.html
0 → 100644
1 | +<!DOCTYPE html5> | ||
2 | +<html lang = "ko"> | ||
3 | +<html> | ||
4 | + <head> | ||
5 | + <meta charset="utf-8"> | ||
6 | + <title></title> | ||
7 | + </head> | ||
8 | + <body> | ||
9 | + <p> | ||
10 | + <span style="font-weight:bold"> | ||
11 | + <a href="http://cafe.naver.com/bigv1p/"target=_blank>빅뱅 </a> | ||
12 | + </span> | ||
13 | + </p> | ||
14 | + <p> | ||
15 | + <img src="C:\웹프로그래밍/bigbang.jpg"> | ||
16 | + </p> | ||
17 | + <ul> | ||
18 | + <li>구성원 | ||
19 | + <ol> | ||
20 | + <span style="color:red"> | ||
21 | + <li>지드래곤</li> | ||
22 | + <li>탑</li> | ||
23 | + <li>승리</li> | ||
24 | + <li>대성</li> | ||
25 | + <li>태양</li> | ||
26 | + </span> | ||
27 | + </ol> | ||
28 | + </li> | ||
29 | + <li>소속사 : <a href="http://www.ygfamily.com/">YG엔터테인먼트 </a></li> | ||
30 | + </ul> | ||
31 | + </body> | ||
32 | +</html> |
ex03.html
0 → 100644
1 | +<!DOCTYPE html5> | ||
2 | +<html lang = "ko"> | ||
3 | +<html> | ||
4 | + <head> | ||
5 | + <meta charset="utf-8"> | ||
6 | + <title></title> | ||
7 | + </head> | ||
8 | + <body> | ||
9 | + <table border="1"> | ||
10 | + <thead> | ||
11 | + <tr> | ||
12 | + <th>분류</th> | ||
13 | + <th>제품명</th> | ||
14 | + <th>단가</th> | ||
15 | + <th>수량</th> | ||
16 | + <th>금액</th> | ||
17 | + </tr> | ||
18 | + </thead> | ||
19 | + | ||
20 | + <tbody> | ||
21 | + <tr> | ||
22 | + <td rowspan="3">공산품 | ||
23 | + <td>iphone</td> | ||
24 | + <td>90,000</td> | ||
25 | + <td>2</td> | ||
26 | + <td>1,800,000</td> | ||
27 | + </tr> | ||
28 | + | ||
29 | + <tr> | ||
30 | + <td>LED TV</td> | ||
31 | + <td>3,000,000</td> | ||
32 | + <td>3</td> | ||
33 | + <td>9,000,000</td> | ||
34 | + </tr> | ||
35 | + <tr> | ||
36 | + <th colspan="3">소계</th> | ||
37 | + <td>10,800,000</td> | ||
38 | + </tr> | ||
39 | + | ||
40 | + </tbody> | ||
41 | + <tfoot> | ||
42 | + <tr> | ||
43 | + <th rowspan="2">농산품</th> | ||
44 | + <td>인삼</td> | ||
45 | + <td>10,000</td> | ||
46 | + <td>200</td> | ||
47 | + <td>2,000,000</td> | ||
48 | + </tr> | ||
49 | + | ||
50 | + <tr> | ||
51 | + <th colspan="3">소계</th> | ||
52 | + <td>2,000,000</td> | ||
53 | + </tr> | ||
54 | + <tr> | ||
55 | + <th colspan="4">합계</th> | ||
56 | + <td>12,800,000</td> | ||
57 | + </tr> | ||
58 | + </tfoot> | ||
59 | + | ||
60 | + </body> | ||
61 | +</html> |
ex04-01.html
0 → 100644
1 | +<!DOCTYPE html5> | ||
2 | +<html lang = "ko"> | ||
3 | +<html> | ||
4 | + <head> | ||
5 | + <meta charset="utf-8"> | ||
6 | + <title></title> | ||
7 | + </head> | ||
8 | + <body> | ||
9 | + <form action="#" method="post"> | ||
10 | + <table border="1"> | ||
11 | + <tbody> | ||
12 | + <tr> | ||
13 | + <td>아이디</td> | ||
14 | + <td colspan="3"> | ||
15 | + <input type="text" name="id" size="10"/> | ||
16 | + <input type="button" value="중복조회"/> | ||
17 | + </td> | ||
18 | + </tr> | ||
19 | + | ||
20 | + <tr> | ||
21 | + <td>비밀번호</td> | ||
22 | + <td><input type="text" name="pwd" size="10"/></td> | ||
23 | + <td>확인</td> | ||
24 | + <td><input type="text" name="pwd" size="10"/></td> | ||
25 | + </tr> | ||
26 | + | ||
27 | + <tr> | ||
28 | + <td>이름</td> | ||
29 | + <td colspan="3"><input type="text" name="name" size="10"/></td> | ||
30 | + </tr> | ||
31 | + | ||
32 | + <tr> | ||
33 | + <td>이메일</td> | ||
34 | + <td colspan="3"><input type="text" name="mail" size="10"/></td> | ||
35 | + </tr> | ||
36 | + | ||
37 | + <tr> | ||
38 | + <td>성별</td> | ||
39 | + <td colspan="3"><input type="radio" name="sex" value="male"/>남 | ||
40 | + <input type="radio" name="sex" value="female"/>여 | ||
41 | + <br/></td> | ||
42 | + </tr> | ||
43 | + | ||
44 | + <tr> | ||
45 | + <td>지역</td> | ||
46 | + <td colspan="3"> <select name="city"> | ||
47 | + <option value="seoul">서울</option> | ||
48 | + <option value="busan">부산</option> | ||
49 | + <option value="something">기타</option> | ||
50 | + </select> | ||
51 | + </td> | ||
52 | + </tr> | ||
53 | + | ||
54 | + <tr> | ||
55 | + <td colspan="4"><input type="checkbox" name="thing" value="adjust"/>약관에 동의합니다.</td> | ||
56 | + </tr> | ||
57 | + </tbody> | ||
58 | + </table> | ||
59 | + | ||
60 | + <tfoot> | ||
61 | + <input type="summit" value="회원가입"/> | ||
62 | + </tfoot> | ||
63 | + </form> | ||
64 | + </body> | ||
65 | +</html> |
ex04.html
0 → 100644
1 | +<!DOCTYPE html5> | ||
2 | +<html lang = "ko"> | ||
3 | +<html> | ||
4 | + <head> | ||
5 | + <meta charset="utf-8"> | ||
6 | + <title></title> | ||
7 | + </head> | ||
8 | + <body> | ||
9 | + <form action="#" method="post"> | ||
10 | + 아이디:<input type="text" name="name" size="10"/> | ||
11 | + <input type="button" value="중복조회"/> <br/> | ||
12 | + 비밀번호:<input type="password" name="pwd" size="10"/><br/> | ||
13 | + 성별: | ||
14 | + <input type="radio" name="sex" value="male"/>남 | ||
15 | + <input type="radio" name="sex" value="female"/>여 | ||
16 | + <br/> | ||
17 | + 취미: | ||
18 | + <input type="checkbox" name="hobby" value="book"/>책 | ||
19 | + <input type="checkbox" name="hobby" value="movie"/>영화 | ||
20 | + <input type="checkbox" name="hobby" value="music"/>음악 | ||
21 | + <br/> | ||
22 | + 사진: | ||
23 | + <input type="file" name="photo"/><br/> | ||
24 | + 주소: | ||
25 | + <select name="job"> | ||
26 | + <option value="seoul">서울</option> | ||
27 | + <option value="busan">부산</option> | ||
28 | + <option value="something">기타</option> | ||
29 | + </select> | ||
30 | + 소개:<br/> | ||
31 | + <textarea cols="80" rows="10" name="intro"></textarea> <br/> | ||
32 | + <input type="submit"/> | ||
33 | + </form> | ||
34 | + </body> | ||
35 | +</html> |
-
Please register or login to post a comment