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