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