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