Use on the webTotal Use [ 6755 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1788cdf6c0711f2c52b178c3dffd240b?family=strangeheadache" 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/1788cdf6c0711f2c52b178c3dffd240b?family=strangeheadache);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "strangeheadache";
src: url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.eot");
src: url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1788cdf6c0711f2c52b178c3dffd240b.svg#strangeheadache")format("svg");
}
2CSS rules to specify fonts
font-family: "strangeheadache";