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