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