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