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