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