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