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