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