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