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