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