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