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