'.NET프로그래밍 > HTML 4.0 / XHTML1.0' 카테고리의 다른 글

문서형 선언(DOCTYPE)과 문서형 정의(DTD)  (0) 2011.02.16
25. HTML 태그 정리  (0) 2009.07.24
24. 메타태그  (0) 2009.07.24
Form  (0) 2009.07.24
22. I프레임(인라인 프레임)  (0) 2009.07.24
Posted by holland14
:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>HTML 태그 정리 : 50가지 정도...</title>
</head>
<body>

<br /> : 줄바꿈

<p></p> : 문단(단락)구분. 2줄 바꿈

<h1></h1> <h6></h6> : 제목 크기

<a></a> : 링크

<address></address> : 주소. 이탤릭체

<b></b> : 볼드체

<blockquote></blockquote> : 한단계 들여쓰기

<center></center> : 가운데 정렬

<cite></cite> <code></code> <dfn></dfn> <var></var> : 인용구문

<div></div> <span><span> : 많이 쓰임

<dl></dl> <dt></dt> <dd></dd>: 용어 정의

<em></em> <strong></strong> : 강조

<form> <input /> <select> <optgroup> <option></option> </optgroup> </select> <textarea></textarea> </form> : '폼' 관련

<hr /> : 수평선

<i></i> <u></u> <s></s> <sub></sub> <sup></sup> <tt></tt> : 이텔릭체, 밑줄, 취소선, 아랫첨자, 윗첨자, 타자기체(정사각형크기글씨)

<ol> <li></li> </ol> <ul> <li></li> </ul> : 목록(리스트)

<iframe></iframe>

<img /> <map><area /></map> : 이미지맵

<pre></pre> <xmp></xmp>

<table></table> <tr></tr> <td></td> <caption></caption> <thead></thead> <tbody></tbody> <tfoot></tfoot> <th></th> : 테이블

<frameset></frameset> <frame></frame> <nobr></nobr>


</body>
</html>

'.NET프로그래밍 > HTML 4.0 / XHTML1.0' 카테고리의 다른 글

문서형 선언(DOCTYPE)과 문서형 정의(DTD)  (0) 2011.02.16
HTML4.0 / XHTML1.0 - PPT  (0) 2009.07.25
24. 메타태그  (0) 2009.07.24
Form  (0) 2009.07.24
22. I프레임(인라인 프레임)  (0) 2009.07.24
Posted by holland14
:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <meta http-equiv="refresh" content="10;url=http://www.dotnetkorea.com/" />
   
    <meta http-equiv="content-type" content="text/html; charset=euc-kr" />
    <meta http-equiv="content-style-type" content="text/css" />
    <meta http-equiv="content-script-type" content="text/javascript" />
   
    <meta name="Author" content="RedPlus" />
    <meta name="Generator" content="Visual Studio 2005" />
    <meta name="Keywords" content="마스터페이지, 템플릿페이지, XHTML, CSS, JavaScript" />
    <meta name="Description" content="ASP.NET 사용자를 위한 HTML 웹사이트 기본 페이지" />
   
    <meta http-equiv="refresh" content="60;url=http://www.dotnetkorea.com" />
   
    <!-- 검색 엔진에 노출되지 않게 하고자 할때... -->
    <meta name="robots" content="noindex, nofollow" />
   
    <link rel="shortcut icon" href="http://www.naver.com/favicon.ico" />
    
</head>
<body>

</body>
</html>

//
- <meta>태그를 활용하여 웹페이지 설명을 붙인다.
- <meta>태그는 <head> 태그 안에 들어옴. 검색에 노출이 잘 된다.

- <link rel="shortcut icon" href="http://www.naver.com/favicon.ico" />
   --> 주소창에서 주소 앞에 조그만 아이콘보이게 할 때


< 실행결과 >


'.NET프로그래밍 > HTML 4.0 / XHTML1.0' 카테고리의 다른 글

HTML4.0 / XHTML1.0 - PPT  (0) 2009.07.25
25. HTML 태그 정리  (0) 2009.07.24
Form  (0) 2009.07.24
22. I프레임(인라인 프레임)  (0) 2009.07.24
프레임  (0) 2009.07.23
Posted by holland14
: