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