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