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