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