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