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