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