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