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