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