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