English 中文(简体)
Bootstrap Tutorial

Bootstrap with CSS

Bootstrap Layout Components

Bootstrap Plugins

Bootstrap Demos

Bootstrap Useful Resources

Selected Reading

Bootstrap - Typography
  • 时间:2024-11-03

Bootstrap - Typography


Previous Page Next Page  

Bootstrap uses Helvetica Neue, Helvetica, Arial, and sans-serif in its default font stack. Using typography feature of Bootstrap you can create headings, paragraphs, psts and other inpne elements. Let see learn each one of these in the following sections.

Headings

All HTML headings (h1 to h6) are styled in Bootstrap. An example is shown below −

<h1>I m Heading1 h1</h1>
<h2>I m Heading2 h2</h2>
<h3>I m Heading3 h3</h3>
<h4>I m Heading4 h4</h4>
<h5>I m Heading5 h5</h5>
<h6>I m Heading6 h6</h6>

The above code segment with Bootstrap will produce following result −