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