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