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