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