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