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