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