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