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