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