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