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