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