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