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