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