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