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