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