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