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