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