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