언어/HTML

HTML 단락

shypang 2018. 12. 17. 17:30

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