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