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