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