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