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