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