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