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