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