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