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