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