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