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