본문으로 건너뛰기
새로운 질서 위키
최근 편집된
검색
새 문서
편집:
하이퍼링크의 힘과 아름다움
내용을 입력하세요...
[[거의]] [[모든]] 것을 [[연결]]하는 [[하이퍼링크]]는 [[웹]]상에서는 [[HTML]]과 함께 다음과 같이 실현된다. ```html <a href="https://neworder.xyz">새로운 질서</a> ``` ```html <a href="https://neworder.xyz" target="_blank>새로운 질서</a> ``` ```html <a href="neworder.jpg">새로운 질서</a> ``` ```html <a href="neworder.html">새로운 질서</a> ``` ```html <a href="neworder/index.html">새로운 질서</a> ``` ```html <a href="../index.html">새로운 질서</a> ``` ```html <a href="https://neworder.xyz"> <img src="neworder.jpg" alt="새로운 질서"> </a> ``` [[하이퍼링크]]는 [[데이터]]와 [[데이터]]뿐 아니라 [[사람]]과 [[사람]]을 연결하기도 한다. 이메일뿐 아니라... ```html <a href="mailto:minguhong@gmail.com">민구홍</a> ``` 전화... ```html <a href="tel:01072310106">민구홍</a> ``` 문자 메시지까지. ```html <a href="sms:01072310106">민구홍</a> ``` 한 가지 더... ```html <h1 id="somewhere">민구홍</h1> (...) <a href="#somewhere">민구홍</a> ``` 마지막으로... ```html <a href="https://minguhong.fyi" target="anywhere">민구홍</a> (...) <iframe src="https://neworder.xyz" name="anywhere"></iframe> ```
취소
저장