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