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