HTML 단락
HTML 단락은 <p>
태그 로 정의됩니다 .
//입력시
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
//출력시
This is a paragraph.
This is another paragraph
HTML 단락은 <p>
태그 로 정의됩니다 .
//입력시
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
//출력시
This is a paragraph.
This is another paragraph