You can (and in most cases should) use non-system fonts to make your web designs unique. This is particularly true on the web as there are conventions that are good to stick with. Nice, unique typography is a great tool for distinguishing your site from others.
View the relevant code in the CSS which at its core allows you to provide a font file to use at your own discretion, without the requirement of your users having the font installed on their system.
You place your font file(s) in your working folder.You can generate web compatible fonts at fontsquirrel.com. You then do two things. 1) Tell your CSS file that when you say "FontName," you mean FontName.otf (or .woff2, etc). (2) Reference the newly declared font for any element you wish to use that font.
@font-face { font-family: "FontName"; src: url("FontName.woff2") format("woff2"), url("FontName.woff") format("woff"); }
h2 { font-family: "FontName", sans-serif; }
Just follow their instructions. Stop being lazy!
Click the following button to see the popup, which can contain anything.
Here is some starting text. Click on the text to edit the content to your heart's desire.
The content is gonna change in here.