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