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