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