h1, h2, h3, h4, h5, h6, p, a, span class
Standard HTML tags for defining heading styles (h1-h6), paragraphs (p), hyperlinks (a), and spans.
The following illustrations show:
-
The h1, h2, h3, h4, h5, h6, p, a, span style before applying CSS changes.
-
The h1, h2, h3, h4, h5, h6, p, a, span style after the font-family property has been changed to Times New Roman and the color property has been changed to red.
| Default CSS | Modified CSS |
|---|---|
![]() h1, h2, h3, h4, h5, h6, p, a, span {<br/> font-family: 'Lato', sans-serif; <br/> color: #444; <br/>} | ![]() h1, h2, h3, h4, h5, h6, p, a, span {<br/> font-family: "Times New Roman"; <br/> color: red; <br/>} |
Updated 19 days ago


