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