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