UNPKG

foundation-sites

Version:

The most advanced responsive front-end framework in the world.

36 lines (33 loc) 1.39 kB
<!doctype html> <!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]--> <html class="no-js" lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <title>Foundation for Sites Testing</title> <link href="../motion-ui/dist/motion-ui.css" rel="stylesheet" /> <link href="../assets/css/foundation-prototype.css" rel="stylesheet" /> </head> <body> <div class="grid-container"> <div class="grid-x grid-padding-x"> <div class="cell"> <h2>Typescale</h2> <p>Adjust font-size by overriding an element’s default size. This can be useful to size a <code>&lt;p&gt;</code> or <code>&lt;h1&gt;</code> through <code>&lt;h6&gt;</code> using Foundation's existing header sizes.</p> <h2 class="h1">Lorem Ipsum Dolor</h2> <h3 class="h2">Lorem Ipsum Dolor</h3> <h4 class="h3">Lorem Ipsum Dolor</h4> <h5 class="h4">Lorem Ipsum Dolor</h5> <h6 class="h5">Lorem Ipsum Dolor</h6> <p class="h6">Lorem Ipsum Dolor</p> </div> </div> </div> <script src="../assets/js/vendor.js"></script> <script src="../assets/js/foundation.js"></script> <script> $(document).foundation(); </script> </body> </html>