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