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