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