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