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