Web/국비 지원 교육

[ Visual Studio Code ] 문단 개행 태그 (br태그)

곽수진 2022. 6. 15. 20:58
반응형
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>test01</title>
</head>
<body>
    What is Lorem Ipsum?<br>
    <br/>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </br>
    Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <br>
    It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. <br>
    It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</body>
</html>
  • br : 다음 문단으로 넘어감

 

실행 결과

반응형