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