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