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