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