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