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