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