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