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