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