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