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