Bootstrap topography or text editing method -3

 

 <div class="container">
    <h1>Display Headings</h1>
    <p>Display headings are used to stand out more than normal headings
       (larger font-size and lighter font-weight):</p>
    <h1 class="display-1">Display 1 </h1>
    <h1 class="display-2">Display 2</h1>
    <h1 class="display-3">Display 3</h1>
    <h1 class="display-4">Display 4</h1>
  </div>

  

  <div class="container">
    <h1>Lighter, Secondary Text</h1>
    <p>The small element is used to create a lighter, secondary text in any heading:</p>       
    <h1>h1 heading <small>secondary text</small></h1>
    <h2>h2 heading <small>secondary text</small></h2>
    <h3>h3 heading <small>secondary text</small></h3>
    <h4>h4 heading <small>secondary text</small></h4>
    <h5>h5 heading <small>secondary text</small></h5>
    <h6>h6 heading <small>secondary text</small></h6>
  </div>

  <div class="container">
    <h1>Abbreviations</h1>
    <p>The abbr element is used to mark up an abbreviation or acronym:</p>
    <p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
  </div>

  <div class="container">
    <h1>Blockquotes</h1>
    <p>The blockquote element is used to present content from another source:</p>
    <blockquote class="blockquote">
      <p>For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.</p>
      <footer class="blockquote-footer">From WWF's website</footer>
    </blockquote>
  </div>

  <div class="container">
    <h1>Description Lists</h1>    
    <p>The dl element indicates a description list:</p>
    <dl>
      <dt>Coffee</dt>
      <dd>- black hot drink</dd>
      <dt>Milk</dt>
      <dd>- white cold drink</dd>
    </dl>     
  </div>


  <div class="container">
    <h1>Code Snippets</h1>
    <p>Inline snippets of code should be embedded in the code element:</p>
    <p>The following HTML elements: <code>span</code><code>section</code>, and <code>div</code> defines a section in a document.</p>
  </div>
    

<div class="container">
  <h1>Keyboard Inputs</h1>
  <p>To indicate input that is typically entered via the keyboard, use the kbd element:</p>
  <p>Use <kbd>ctrl + p</kbd> to open the Print dialog box.</p>
</div>





...................................................................................





.font-weight-boldBold textTry it
.font-weight-bolderBolder textTry it
.font-italicItalic textTry it
.font-weight-lightLight weight textTry it
.font-weight-lighterLighter weight textTry it
.font-weight-normalNormal textTry it
.leadMakes a paragraph stand outTry it
.smallIndicates smaller text (set to 80% of the size of the parent)Try it
.text-leftIndicates left-aligned textTry it
.text-*-leftIndicates left-aligned text on small, medium, large or xlarge screensTry it
.text-breakPrevents long text from breaking layoutTry it
.text-centerIndicates center-aligned textTry it
.text-*-centerIndicates center-aligned text on small, medium, large or xlarge screensTry it
.text-decoration-noneRemoves the underline from a linkTry it
.text-rightIndicates right-aligned textTry it
.text-*-rightIndicates right-aligned text on small, medium, large or xlarge screensTry it
.text-justifyIndicates justified textTry it
.text-monospaceMonospaced textTry it
.text-nowrapIndicates no wrap textTry it
.text-lowercaseIndicates lowercased textTry it
.text-resetResets the color of a text or a link (inherits the color from its parent)Try it
.text-uppercaseIndicates uppercased textTry it
.text-capitalizeIndicates capitalized textTry it
.initialismDisplays the text inside an <abbr> element in a slightly smaller font sizeTry it
.list-unstyledRemoves the default list-style and left margin on list items (works on both <ul> and <ol>). This class only applies to immediate children list items (to remove the default list-style from any nested lists, apply this class to any nested lists as well)Try it
.list-inlinePlaces all list items on a single line (used together with .list-inline-item on each <li> elements)Try it
.pre-scrollableMakes a <pre> element scrollable






Comments

Popular posts from this blog

D WEB LINK