Use on the webTotal Use [ 5819 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ab5d2f4b239b1d8c548ce4b6758f0beb?family=P22+Hedonic+W00+Black+Caps" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/ab5d2f4b239b1d8c548ce4b6758f0beb?family=P22+Hedonic+W00+Black+Caps);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "P22 Hedonic W00 Black Caps";
src: url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.eot");
src: url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ab5d2f4b239b1d8c548ce4b6758f0beb.svg#P22 Hedonic W00 Black Caps")format("svg");
}
2CSS rules to specify fonts
font-family: "P22 Hedonic W00 Black Caps";