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