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