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