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