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