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