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