본문 바로가기

IT/수원스터디

1. HTML

0. editplus 다운로드 ( 30일 무료 )

 


epp310.exe



1.  기본구조

기본 4가지의 태그

<HTML> <HEAD> <TITLE> <BODY>


<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>기본구조</title>

</head>

<body>

기본구조 테스트입니다.

</body>

</html>



2. 태그

 2-1) 주석

    <!-- 주석내용 입력-->


 2-2) 기본태그



<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>태그</title>

</head>

<body>

<form name="frm" method="post" action="./1. 기본구조.html">

<input type="text" name="id" value="아이디" >

<br>

<input type="password" name="pwd" value="비밀번호">

<br>

<input type="button" value="버튼">

<br>

<input type="submit" value="보내기">

<br>

<input type="reset" value="다시쓰기">


<select name="phone1">

<option value="010" selected="selected">공일공</option>

<option value="011" >공일일</option>

<option value="016" >공일육</option>

<option value="017" >공일칠</option>

<option value="019" >공일구</option>

</select>


<br>


<input type="checkbox" name="checkbox01" value="01">1

<br>

<input type="checkbox" name="checkbox01" value="02">2

<br>

<input type="checkbox" name="checkbox01" value="03">3

<br>

<input type="checkbox" name="checkbox01" value="04">4


    <br>

<input type="radio" name="radio01" value="01"> 1

<br>

<input type="radio" name="radio01" value="02"> 2

<br>

<input type="radio" name="radio01" value="03"> 3

<br>

<input type="radio" name="radio02" value="04"> 4

<br>


<a href="./1. 기본구조.html" target="_blank">A태그</a>

<br>

<img src="./image.jpg" width="200">


<table border="1" width="400" height="400">

<tr>

<td width="100">1-1</td>

<td height="200">1-2</td>

</tr>

<tr>

<td colspan="2">2</td>

</tr>

<tr>

<td>3-1</td>

<td rowspan="2">3-2</td>

</tr>

<tr>

<td>4-1</td>

</tr>

</table>

</form>

</body>

</html> 



'IT > 수원스터디' 카테고리의 다른 글

동적테이블, 체크박스 전체 체크, 버튼..value  (0) 2014.08.24
동적테이블등.. 과제 body 부분  (0) 2014.08.17
2-2. JS, opener로 값 보내기  (0) 2014.08.13
2. JS(java script)  (2) 2014.08.11
0. 시작  (0) 2014.07.10