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