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