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