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