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