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