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