http://www.tohoho-web.com/html/index.htm
1. Head
・<meta>~</meta> :
・<title>~</title> : 타이틀바에 새겨질 글자를 정의한다. 타이틀 바란 브라우즈 창의 이름을 의미한다.
・<link>~</link> : css 파일을 연다.
-<link rel="stylesheet" type="text/css" href="http://127.0.0.1/CSS/style.css">
・
・
・
2. Body
・<style>~</style> : style 속성은 말 그대로 태그의 스타일 관련 속성을 정의하며 CSS와 연동된다.
<태그 style="속성1:값1; 속성2:값2;">의 형태로 사용하며 속성의 값(위 태그의 값1, 값2)는 따옴표로 감싸지 않는다.
속성값의 끝에는 세미콜론(;) 을 붙이며, 마지막 값 뒤에는 꼭 붙이지 않아도 된다.
<html> <body> <div style="height:40px; border: 1px solid green">style1</div> <div style=" background-color: red">style2</div> </body> </html>
>>>
style1style2
・<span>~</span> :<div> 태그와 비슷하게 레이아웃을 설정할 때 쓰인다. 하지만 인라인 엘리머트 이기 때문에 블록 엘리먼트인 div와 다르게 영역에 꽉차게 표시되지 않고, 설정한 줄마다 표시되며 크기를 설정 할 수 없다
<html> <body> <p>first paragraph</p> <p>second paragraph</p> <p> new line<br> third paragraph </p> </body> </html>>>>first paragraph
second paragraph
new line
third paragraph
<html>
<head>
<title>TGIF</title>
<head>
<body link="green" vlink="red" alink="yellow" background ="sample1.jpg"text="red">
<a href="<strong><font>'>http://google.com"><strong><font size = 7><center>Hello World</center></font></strong></a>
<h1><font size = 7>MY</font> <i><font size = 7>name</font></i> <font size = 7>is daseul</font></h1>
<h2><font size = 7>Thx God It's Friday</font></h2>
<h3><font size = 7>Can i get to airport on time</font></h3>
<li>
<ul><font size = 7>hana</font></ul><ul><font size = 7>dul</font></ul>
</li>
<table border="2">
<tr>
<th>name</th>
<th>area</th></tr>
<tr>
<td><font size = 7>haneda</font></td>
<td><font size = 7>tokyo</font></td>
</tr><tr>
<td><font size = 7>narita</font></td>
<td><font size = 7>chiba</font></td>
</tr>
</table></body>
</html>
・<form name ="" action="" method="">~</form> : name는 form의 이름이며, action은 바로 전송시킬 페이지 또는 파일 이름이다. action에 페이지 주소가 들어가면 그 페이지 주소로 이동하고, 프로그래밍 파일 주소를 넣으면 프로그래밍이 실행된다. action을 적용하기 위해서는 <input type="submit></input> 으로 submit를 버튼을 생성해야한다.
<html>
<head>
<title>Login Page</title>
</head>
<body>
<form action="HelloWorldServlet"> // action에는 컴퓨터 내의 파일 이름 혹은 인터넷 어드레스를 적는다.
// HelloWorldServet 파일이 실행된다.Username : <input type="text" name="uname"></input>
<br>
Password : <input type="password" name="pwd"></input>
<br>
<input type="submit"></input>
<input type="reset"></input>
</form>
</body>
・<footer>~</footer>
・<textarea>~</textarea>:
・<select>~</select>
・<button>~</button>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>HTML Control Demo</title>
<style></style>
</head>
<body>
<h3>Html All Contrl Demo</h3>
<table border="2" >
<!-First row->
<tr>
<td>
First name
</td>
<td>
<input type="text" name="firstName"></input>
</td>
</tr>
<!-Second row->
<tr>
<td>
Last Name
</td>
<td>
<input type="text" name="lastName"></input>
</td>
</tr>
<!-Second.5 row->
<tr>
<td>
Employee No
</td>
<td>
<input type="password" name="Employee No"></input>
</td>
</tr>
<!-Third row->
<tr>
<td>
Address
</td>
<td>
<textarea name="address" rows="4" cols="50"></textarea>
</td>
</tr>
<!-Fourth row->
<tr>
<td>
Marital Status
</td>
<td>
<input type="Radio" name = "status">Married</input>
<input type="Radio" name = "status">Single</input>
</td>
</tr>
<!-Fifth row->
<tr>
<td>
Skill
</td>
<td>
<input type="checkbox" name="skill">Singing</input>
<input type="checkbox" name="skill">Dancing</input>
<input type="checkbox" name="skill">Swimming</input>
</td>
</tr>
<!-Sixth row->
<tr>
<td>
Profession
</td>
<td>
<select name ="profession">
<option value="E">Engineer</option>
<option value ="D">Teacher</option>
<option value ="P">Pilot</option>
<option value ="L">Lawyer</option>
</select>
</td>
</tr>
<!-Seventh row->
<tr>
<td>
<input type="submit" name="submit"></input>
</td>
<td>
<input type="reset" name="reset"></input>
</td>
</tr>
</table>
</body>
</html>
>>>
・
・
・
・
・
・
ⅰ. 글자 서식 태그
・<b></b> : 글씨를 굵게
・<small>~</small> : 글씨를 작게
・
・
・
・
・
・
・
・<td width="80" height="75" align="center" valign="top" style="padding-top:17px;">
・
'Front-end > HTML,CSS Basic' 카테고리의 다른 글
[HTML]Class 속성 구체적으로 알아보기 (0) | 2018.01.25 |
---|---|
[CSS]초간단 이해 (0) | 2018.01.25 |
meta 태그 구체적으로 알아보기 (0) | 2018.01.25 |
[HTML] DIV 태그와 SPAN 태그의 차이점/인라인엘리먼트, 블록엘리먼트의 종류 (0) | 2018.01.25 |
HTML의 구성요소 태그(Tag), 요소(Element), 속성(Attribute), 변수(Arguments) (0) | 2018.01.25 |