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