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