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