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