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