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