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