일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- 24시간의 전사
- disk
- 정보처리기사 필기 합격
- Multimeida
- CTF-D
- network
- 네트워크관리사2급
- ftz
- 디지털포렌식
- 슬퍼유
- 2022시작
- 생활코딩 html
- 생활코딩
- 포렌식
- memory
- 실기
- blkls
- N0Named
- 는 하지마...
- html
- 윈도우 프로세스 종류
- Window process
- Multimedia
- 디지털포렌식 with CTF
- pythonchallenge
- vinetto
- 네트워크 보안
- slack space
- 윈도우 프로세스
- ZIP 파일구조
Archives
- Today
- Total
ssoL2 TISTORY
HTML 링크 본문
굉장히 중요한 HTML 링크
<a> tag
- 링크
- 링크 참조도 넣어야함 -> href 속성 사용
- <a href ="www.w3.org/TR/html5/">
<!DOCTYPE HTML>
<html>
<head>
<title>WEB1 - HTML</title>
<meta charset="utf-8">
</head>
<body>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
<h1>HTML이란 무엇인가?</h1>
<p><a href="https://www.w3.org/TR/html5/">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.
Web browses receive HTML documents from a web server or from local storage and render them into multimedia web pages. HTML describes
the structure of a web page semantically and originally included cues for the appearance of the document.</p>
<img src="coding.jpg" width="100%">
<p style="margin-top:40px;">HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects, such as interactive forms,
may be embedded into the rendered page. It provides a means to create structured documents by denoting structual semantics for text
such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets.</p>
</body>
</html>
<a> tag
- 새 창에서 열리게 하고 싶다면 -> target 속성 사용
- <a href="https://www.w3.org/TF/html5/" target="_blank">
<!DOCTYPE HTML>
<html>
<head>
<title>WEB1 - HTML</title>
<meta charset="utf-8">
</head>
<body>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
<h1>HTML이란 무엇인가?</h1>
<p><a href="https://www.w3.org/TR/html5/" target="_blank">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.
Web browses receive HTML documents from a web server or from local storage and render them into multimedia web pages. HTML describes
the structure of a web page semantically and originally included cues for the appearance of the document.</p>
<img src="coding.jpg" width="100%">
<p style="margin-top:40px;">HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects, such as interactive forms,
may be embedded into the rendered page. It provides a means to create structured documents by denoting structual semantics for text
such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets.</p>
</body>
</html>
<a> tag
- 링크를 클릭하기 전에 툴팁처럼 무언가 알려주고 싶다면 -> title 속성 사용
<!DOCTYPE HTML>
<html>
<head>
<title>WEB1 - HTML</title>
<meta charset="utf-8">
</head>
<body>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
<h1>HTML이란 무엇인가?</h1>
<p><a href="https://www.w3.org/TR/html5/" target="_blank" title="HTML5 spcification">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.
Web browses receive HTML documents from a web server or from local storage and render them into multimedia web pages. HTML describes
the structure of a web page semantically and originally included cues for the appearance of the document.</p>
<img src="coding.jpg" width="100%">
<p style="margin-top:40px;">HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects, such as interactive forms,
may be embedded into the rendered page. It provides a means to create structured documents by denoting structual semantics for text
such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets.</p>
</body>
</html>
'com > html,css' 카테고리의 다른 글
HTML 인터넷 동작 과정 (0) | 2021.02.23 |
---|---|
HTML 웹페이지 (0) | 2021.02.23 |
HTML 구조 (0) | 2021.02.23 |
HTML 기본 문법과 태그 (0) | 2021.02.23 |
HTML (0) | 2021.02.23 |
Comments