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