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