...

/

Improving the Typography

Improving the Typography

Learn how to make the layout more interactive.

Change the color of the text

To change the color, we use Bootstrap contextual classes for text, i.e. text-* . We’ll also use the lead text class to make it a bit more prominent.

Press + to interact
<footer class="container-fluid bg-dark py-3 pos-fix b0">
<div class="container lead text-light">
Made with love by Educative.io
</div>
</footer>

Font style

Next, let’s make the entire page use the Roboto font.

Press + to interact
* {
font-family: Roboto,
sans-serif !important;
}

* is called the universal selector, and the !important flag we used on it ...