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