문서에 섹션을 추가하려면
태그를 사용하세요. HTML
태그는 문서의 섹션을 정의하는 데 사용됩니다. div 태그를 사용하면 HTML 요소의 큰 섹션을 함께 그룹화하고 CSS로 형식을 지정할 수 있습니다.
예시
섹션을 생성하기 위해 다음 코드를 시도할 수 있습니다 -
<!DOCTYPE html> <html> <head> <title>HTML div Tag</title> <link rel = "stylesheet" href = "style2.css"> </head> <body> <div id = "contentinfo"> <p>Welcome to our website. We provide tutorials on various subjects.</p> </div> </body> </html>
다음은 CSS 파일 style2.css입니다.
#contentinfo p { line-height: 20px; margin: 30px; padding-bottom: 20px; text-align: justify; width: 140px; color: red; }