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