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