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