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