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