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