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