TIL-HTML(텍스트 강조,밑줄긋기)

연시아·2022년 4월 6일
0

TIL

목록 보기
1/51
post-thumbnail

22.04.05

HTML이란

-Hypertext Markup language의 약어로 웹 페이지와 그 내용을 구조화하기 위해 사용하는 코드입니다.
-HTML은 프로그래밍 언어가 아닙니다. 컨텐츠의 구조를 정의하는 마크업 언어입니다.
-HTML은 컨텐츠의 서로 다른 부분들을 씌우거나 감싸서 다른 형식으로 보이게하거나 특정한 방식으로 동작하도록 하는 일련의 요소<span style="color:green">([elements](https://developer.mozilla.org/ko/docs/Glossary/Element))</span>로 이루어져 있습니다.

▷ 텍스트 강조하기(Strong)

<span style="color:red"><U>Strong</U></span> 요소는 콘텐츠 자체의 중요성을 강조할 때 사용됩니다.

ex) Hypertext Markup Language <strong>(HTML)</strong> is the standard markup language for creating <strong>web</strong> pages and web applications. 

▷ 텍스트 밑줄긋기(Underline)

<span style="color:red">Underline</span> 요소는 일반 글씨체와 구별을 짓기 위해 텍스트에 밑줄을 그을 때 사용합니다.

ex) Hypertext Markup Language (HTML) is the standard markup language for creating <U>web</U> pages and web applications.
profile
backend developer

0개의 댓글