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