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