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