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