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