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