Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> /* The normal face */ @font-face { font-family: "Amaranth"; font-style: normal; font-weight: 400; src: url(/samples/fonts/amaranth.woff2) format("woff2"); } /* The italic face */ @font-face { font-family: "Amaranth"; font-style: italic; font-weight: 400; src: url(/samples/fonts/amaranth-italic.woff2) format("woff2"); } body { font-family: Amaranth, sans-serif; font-size: 8vw; background: beige; } .italic { font-style: italic; } </style> <p class="italic">Pack five dozen jugs.</p> <p>Pack five dozen jugs.</p>
Preview