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