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