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