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