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