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