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