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