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