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