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