웹프 3장 정리 (1)

9105 단어 시험용시험용

📕 글자 태그

제목 글자 태그

📚 <h1> ~ <h6>

<h1>text</h1> ~ <h6>text</h6> : 글자 크기

본문 태그

📚 <p> <br> <hr> <pre> <blockquote> <abbr>

<p>text</p> : 문단

<br> : 줄 바꾸기

<hr> : 수평 줄 삽입

<pre>text</pre> : 입력 그대로 브라우저 표시 ex) space, enter

<blockquote> : 들여쓰기(내용 인용) (quote : 인용)
	text
</blockquote>


<abbr title="text">T</abbr> : 약어(단어 밑에 추가정보 보여주기)

글자 모양 태그

📚 <b> <i> <small> <sub> <sup> <ins> <del> <mark>

<b>text</b> : 굵은글자

<i>text</i> : 기울이기

<small>text</small> : 작은글자

<sub>text</sub> : 아랫첨자

<sup>text</sup> : 윗첨자

<ins>text</ins> : 밑줄

<del>text</del> : 가운데줄(취소선)

<mark>text</mark> : 마크(형광펜)

하이퍼링크 태그

📚 <a> <base>

<a></a> : anchor, 다른 웹 페이지(내부) 특정 위치 이동


<head>
	<base href="url"> : 모든 링크에 대한 기본 디렉터리 지정
</head>

<a>_속성

  1. href = " (1. 절대경로 2. 상대경로 3. ID경로 4. 메일경로) "
<a href="http://www.naver.com">네이버</a> : href(hyper reference)
  1. target = " (1. _blank 2. _self) "
<a href="http://www.naver.com" target="_blank">네이버</a> : _blank : 새 창에서 열기
<a href="http://www.naver.com" target="_self">네이버</a> : _self : 현재 창에서 열기

좋은 웹페이지 즐겨찾기