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