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