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