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