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