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