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