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