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