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