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