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