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