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