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