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