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