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