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