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