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