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