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