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