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