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