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