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