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