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