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