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