HTML의 요소는 기본값보다 큰 텍스트를 형성하는 데 사용됩니다.
참고: 요소는 HTML에서 지원되지 않습니다. 이제 HTML에서 요소를 구현하는 예를 살펴보겠습니다-
예시
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is demo text!</p> <p><big>This demo text is bigger than the default text.</big></p> </body> </html>
출력
위의 예에서 먼저 일반 텍스트를 설정했습니다 -
<p>This is demo text!</p>
그런 다음 요소 −
를 사용하여 다른 텍스트를 설정했습니다.<p> <big> This demo text is bigger than the default text. </big> </p>