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