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