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