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