Open In App

Foundation CSS Typography Complete Reference

Foundation CSS Typography facilitates the clean, simple default style, with attractive styling to the basic typographical elements, that enhance the readability. It can be defined for the headings, paragraphs, lists, other inline components, etc, that helps to create an appealing style for the elements.

Complete list Foundation CSS Typography are listed below:



Below example will give you a brief idea about the Typography of Foundation CSS:

Example:






<!DOCTYPE html>
<html>
  
<head>
    <meta charset="utf-8" />
    <title>
        Foundation CSS Base Typography
    </title>
    <meta name="viewport"
          content="width=device-width,
                initial-scale=1" />
    <link rel="stylesheet" 
          href=
          crossorigin="anonymous" />
</head>
  
<body>
    <center>
        <h1 style="color: green">GeeksforGeeks</h1>
        <h5>Foundation CSS Base Typography Keystrokes</h5>
        <p> Press <kbd>ctrl + esc</kbd> to exit the game. </p>
    </center>
</body>
  
</html>

Output:

Foundation CSS Typography


Article Tags :