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