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