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