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