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