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