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