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