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