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

HTML에 한 줄 바꿈을 삽입하는 방법은 무엇입니까?



태그를 사용하여 HTML에 한 줄 바꿈을 삽입합니다. 다음 코드를 실행하여
태그 −

를 사용하여 줄 바꿈을 삽입할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <title>HTML br Tag</title>
   </head>
   <body>
      <p>This is before the line break<br />
      and this after the line break.</p>
   </body>
</html>