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