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