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