반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 구현
- Critical_Path_Analysis
- qsort
- Biconnected_Component
- data_structure
- 5397
- function_template
- list
- deletion
- 13305
- 예제
- connected_component
- class_template
- 총정리
- c++
- Articulation_Point
- singly Linked List
- template
- sstream
- red-black tree
- sort
- 문법
- Algorithm
- 백준
- '0'
- 자료구조
- Pair
- Heap
- STL
- 알고리즘
Archives
- Today
- Total
- Today
- Total
- 방명록
어제의 나보다 성장한 오늘의 나
[HTML] <a> 태그 사용법 본문
반응형
오늘은 html에서 많이 사용되는 태그 중 하나인 <a> 태그에 대해서 알아보려고 합니다.
href
하이퍼링크 기능
1) 절대 경로
<a href="http://www.naver.com">A태그</a>
왼쪽의 A태그를 클릭하면 href에 적혀있는 주소로 이동..!
2) 상대 경로
<a href="index.html">A태그</a>
같은 폴더 안에 있는 index.html로 이동
3) 자바스크립트 호출
<a href=”javascript:alert(‘Hello’);”>A태그</a>
감사합니다.
반응형
Comments