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