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