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