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