Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 단락

<시간/>

HTML 단락은

태그를 사용하여 단락 요소를 생성하는 데 사용됩니다. 블록 수준 요소입니다.

구문

다음은 구문입니다 -

<p>content</p>

예시

HTML 단락의 예를 살펴보겠습니다.

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
</style>
<body>
<h1>HTML Paragraphs</h1>
<p>I'm a paragraph element with some dummy text.</p>
</body>
</html>

출력

HTML 단락