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