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