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