Materialize Typography - The Material design uses the "Roboto 2.0" font. It is also included in the Materialize CSS framework. You can also change the material design font by the following given below CSS styles rule & place it into the custom CSS file.
html{
font-family: "Goudy Bookletter 1911", sans-serif;
}
Material design provides some basic styles on the header tags. Let us see the 6 header tags( <h2>
, <h3>
, <h4>
, <h5>
, <h6>
) different sizes.
Source Code
<h1>Heading h1</h1>
<h2>Heading h2</h2>
<h3>Heading h3</h3>
<h4>Heading h4</h4>
<h5>Heading h5</h5>
<h6>Heading h6</h6>
Source Code : Output
Blockquotes are mainly used to give emphasis to a quote or citation.
General Syntax
<blockquote></blockquote>
Source Code
<blockquote>
This is an example that uses the blockquote tag.Let us see its oputput.
</blockquote>
Source Code : Output
This is an example that uses the blockquote tag.Let us see its oputput.
It is a responsive text that adjusts text font-size and line-height according to the device viewport width. To create flow text, add .flow-text
class to the needed tag.
General Syntax
<element class="flow-text"></element>
Source Code
<p class="flow-text">
Shape Your Path is an online web development learning platforms for professional as well as beginners.
</p>
Source Code : Output
Shape Your Path is an online web development learning platforms for professional as well as beginners.