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