123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- {% extends "base-site.html" %}
-
- {% block title %} UI Typography {% endblock %}
-
- <!-- Specific Page CSS goes HERE -->
- {% block stylesheets %}{% endblock stylesheets %}
-
- {% block content %}
-
- <div class="row">
- <div class="col-md-12">
- <div class="card">
- <div class="card-header mb-5">
- <h5 class="card-category">Black Table Heading</h5>
- <h3 class="card-title">Created using Poppins Font Family</h3>
- </div>
- <div class="card-body">
- <div class="typography-line">
- <h1><span>Header 1</span>The Life of Black Dashboard </h1>
- </div>
- <div class="typography-line">
- <h2><span>Header 2</span>The Life of Black Dashboard </h2>
- </div>
- <div class="typography-line">
- <h3><span>Header 3</span>The Life of Black Dashboard </h3>
- </div>
- <div class="typography-line">
- <h4><span>Header 4</span>The Life of Black Dashboard </h4>
- </div>
- <div class="typography-line">
- <h5><span>Header 5</span>The Life of Black Dashboard </h5>
- </div>
- <div class="typography-line">
- <h6><span>Header 6</span>The Life of Black Dashboard </h6>
- </div>
- <div class="typography-line">
- <p><span>Paragraph</span>
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at.
- </p>
- </div>
- <div class="typography-line">
- <span>Quote</span>
- <blockquote>
- <p class="blockquote blockquote-primary">
- "I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at."
- <br>
- <br>
- <small>
- - Noaa
- </small>
- </p>
- </blockquote>
- </div>
- <div class="typography-line">
- <span>Muted Text</span>
- <p class="text-muted">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
- </p>
- </div>
- <div class="typography-line">
- <span>Primary Text</span>
- <p class="text-primary">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
- </div>
- <div class="typography-line">
- <span>Info Text</span>
- <p class="text-info">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers... </p>
- </div>
- <div class="typography-line">
- <span>Success Text</span>
- <p class="text-success">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers... </p>
- </div>
- <div class="typography-line">
- <span>Warning Text</span>
- <p class="text-warning">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
- </p>
- </div>
- <div class="typography-line">
- <span>Danger Text</span>
- <p class="text-danger">
- I will be the leader of a company that ends up being worth billions of dollars, because I got the answers... </p>
- </div>
- <div class="typography-line">
- <h2><span>Small Tag</span>
- Header with small subtitle <br>
- <small>Use "small" tag for the headers</small>
- </h2>
- </div>
- <div class="typography-line">
- <span>Lists</span>
- <div class="row">
- <div class="col-md-3">
- <h5>Unordered List</h5>
- <ul>
- <li>List Item</li>
- <li>List Item</li>
- <li class="list-unstyled">
- <ul>
- <li>List Item</li>
- <li>List Item</li>
- <li>List Item</li>
- </ul>
- </li>
- <li>List Item</li>
- </ul>
- </div>
- <div class="col-md-3">
- <h5>Ordered List</h5>
- <ol>
- <li>List Item</li>
- <li>List Item</li>
- <li>List item</li>
- <li>List Item</li>
- </ol>
- </div>
- <div class="col-md-3">
- <h5>Unstyled List</h5>
- <ul class="list-unstyled">
- <li>List Item</li>
- <li>List Item</li>
- <li>List item</li>
- <li>List Item</li>
- </ul>
- </div>
- <div class="col-md-3">
- <h5>Inline List</h5>
- <ul class="list-inline">
- <li class="list-inline-item">List1</li>
- <li class="list-inline-item">List2</li>
- <li class="list-inline-item">List3</li>
- </ul>
- </div>
- </div>
- </div>
- <div class="typography-line">
- <span>Code</span>
- <p>This is
- <code>.css-class-as-code</code>, an example of an inline code element. Wrap inline code within a
- <code> <code>...</code></code>tag.
- </p>
- <pre>1. #This is an example of preformatted text.<br/>2. #Here is another line of code</pre>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- {% endblock content %}
-
- <!-- Specific Page JS goes HERE -->
- {% block javascripts %}{% endblock javascripts %}
|