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