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