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