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